diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-12-05 17:56:31 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-12-05 17:56:31 -0800 |
commit | 62693db037729f18db42d3959c73e470d1b106f1 (patch) | |
tree | cb4eccc050afeb635b7308fef097dc6ac0912eb4 /modules/gallery/controllers/admin_theme_options.php | |
parent | c7b934bc6daf41af1b6e0b04b9b0e9cb22113db6 (diff) | |
parent | fcbf824c05a7ba61391c0b5afc1589436490e7ba (diff) |
Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_dev
Diffstat (limited to 'modules/gallery/controllers/admin_theme_options.php')
-rw-r--r-- | modules/gallery/controllers/admin_theme_options.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/gallery/controllers/admin_theme_options.php b/modules/gallery/controllers/admin_theme_options.php index 9de54c78..6297e4aa 100644 --- a/modules/gallery/controllers/admin_theme_options.php +++ b/modules/gallery/controllers/admin_theme_options.php @@ -64,7 +64,8 @@ class Admin_Theme_Options_Controller extends Admin_Controller { url::redirect("admin/theme_options"); } else { $view = new Admin_View("admin.html"); - $view->content = $form; + $view->content = new View("admin_theme_options.html"); + $view->content->form = $form; print $view; } } |