summaryrefslogtreecommitdiff
path: root/core/controllers/admin.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2008-12-15 01:50:52 +0000
committerBharat Mediratta <bharat@menalto.com>2008-12-15 01:50:52 +0000
commit1127257f638ce641f23751928c449c3121622a8d (patch)
tree1f84154eaf0e4305fb4019e616eeee80e725a8e6 /core/controllers/admin.php
parent20f6be62c827ab975c652f0d841cfa85d33405ed (diff)
Rename default_admin to admin_default.
Diffstat (limited to 'core/controllers/admin.php')
-rw-r--r--core/controllers/admin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/controllers/admin.php b/core/controllers/admin.php
index 97f29cbb..9147059b 100644
--- a/core/controllers/admin.php
+++ b/core/controllers/admin.php
@@ -26,14 +26,14 @@ class Admin_Controller extends Controller {
}
public function index() {
- $theme_name = module::get_var("core", "active_admin_theme", "default_admin");
+ $theme_name = module::get_var("core", "active_admin_theme", "admin_default");
$template = new Admin_View("admin.html", $theme_name);
$template->content = new View("dashboard.html");
print $template;
}
public function __call($page_name, $args) {
- $theme_name = module::get_var("core", "active_admin_theme", "default_admin");
+ $theme_name = module::get_var("core", "active_admin_theme", "admin_default");
// For now, we have only two legal pages.
// @todo get these pages from the modules
switch($page_name) {