diff options
Diffstat (limited to 'core/controllers/admin.php')
-rw-r--r-- | core/controllers/admin.php | 4 |
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) { |