From 1127257f638ce641f23751928c449c3121622a8d Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Mon, 15 Dec 2008 01:50:52 +0000 Subject: Rename default_admin to admin_default. --- core/controllers/admin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core') 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) { -- cgit v1.2.3