summaryrefslogtreecommitdiff
path: root/core/controllers
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-01-13 11:00:46 +0000
committerBharat Mediratta <bharat@menalto.com>2009-01-13 11:00:46 +0000
commit074cbd860ddaaa1101278ad0cf01935eb791b124 (patch)
treeeb066293791f233e016dc7aa8e0beb9ac0f71357 /core/controllers
parent38ddf559f0f52095c50710268a9890199b73e648 (diff)
Call 'site' themes 'Gallery' themes since site means less to users. Fix swapped messages
Diffstat (limited to 'core/controllers')
-rw-r--r--core/controllers/admin_themes.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/controllers/admin_themes.php b/core/controllers/admin_themes.php
index 8d810bb7..b2e0b0e2 100644
--- a/core/controllers/admin_themes.php
+++ b/core/controllers/admin_themes.php
@@ -63,11 +63,11 @@ class Admin_Themes_Controller extends Admin_Controller {
if ($type == "admin" && $info->admin) {
module::set_var("core", "active_admin_theme", $theme_name);
- message::success(t("Successfully changed your site theme to <b>{{theme_name}}</b>",
+ message::success(t("Successfully changed your admin theme to <b>{{theme_name}}</b>",
array("theme_name" => $info->name)));
} else if ($type == "site" && $info->site) {
module::set_var("core", "active_site_theme", $theme_name);
- message::success(t("Successfully changed your admin theme to <b>{{theme_name}}</b>",
+ message::success(t("Successfully changed your Gallery theme to <b>{{theme_name}}</b>",
array("theme_name" => $info->name)));
}