diff options
Diffstat (limited to 'core/controllers')
-rw-r--r-- | core/controllers/admin_theme_details.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/controllers/admin_theme_details.php b/core/controllers/admin_theme_details.php index ecb359de..938af295 100644 --- a/core/controllers/admin_theme_details.php +++ b/core/controllers/admin_theme_details.php @@ -20,7 +20,8 @@ class Admin_Theme_Details_Controller extends Admin_Controller { public function index() { $view = new Admin_View("admin.html"); - $view->content = theme::get_edit_form_admin(); + $view->content = new View("admin_theme_details.html"); + $view->content->form = theme::get_edit_form_admin(); print $view; } |