Make theme details its own page so that we can wrap it in a div and

give it a title.
This commit is contained in:
Bharat Mediratta
2009-02-26 02:38:32 +00:00
parent 11a7b6b751
commit 30fdedfb50
2 changed files with 8 additions and 1 deletions
+2 -1
View File
@@ -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;
}