diff options
Diffstat (limited to 'core/libraries/Admin_View.php')
-rw-r--r-- | core/libraries/Admin_View.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/libraries/Admin_View.php b/core/libraries/Admin_View.php index 4a367c94..a6768d8b 100644 --- a/core/libraries/Admin_View.php +++ b/core/libraries/Admin_View.php @@ -32,6 +32,9 @@ class Admin_View_Core extends View { parent::__construct($name); $this->theme_name = module::get_var("core", "active_admin_theme"); + if (user::active()->admin) { + $this->theme_name = Input::instance()->get("theme", $this->theme_name); + } $this->set_global('theme', $this); $this->set_global('user', user::active()); } |