diff options
Diffstat (limited to 'core/controllers/admin_dashboard.php')
-rw-r--r-- | core/controllers/admin_dashboard.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/controllers/admin_dashboard.php b/core/controllers/admin_dashboard.php index 13ec5d82..bd295b84 100644 --- a/core/controllers/admin_dashboard.php +++ b/core/controllers/admin_dashboard.php @@ -19,7 +19,9 @@ */ class Admin_Dashboard_Controller extends Admin_Controller { public function index() { - return $this->theme()->admin_dashboard_blocks(); + $view = new Admin_View("admin.html"); + $view->content = $view->admin_dashboard_blocks(); + print $view; } } |