summaryrefslogtreecommitdiff
path: root/modules/gallery/controllers/admin_dashboard.php
diff options
context:
space:
mode:
authorshadlaws <shad@shadlaws.com>2013-02-20 17:30:27 +0100
committershadlaws <shad@shadlaws.com>2013-02-20 17:30:27 +0100
commit94aadf03dadbfa01ba1744df60c97b6f3094ae88 (patch)
tree3506ae79188b69ada194d69984b9dcd9bc147b4e /modules/gallery/controllers/admin_dashboard.php
parent2a6896e2a51833f45cd48bca0b5048cc9633c9bd (diff)
#2008 - Add warnings if some active modules are obsolete.
- added module::get_obsolete_modules_message function - put message on admin/dashboard - put message on admin/modules - put message on upgrader - updated unit test golden file xss_data
Diffstat (limited to 'modules/gallery/controllers/admin_dashboard.php')
-rw-r--r--modules/gallery/controllers/admin_dashboard.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gallery/controllers/admin_dashboard.php b/modules/gallery/controllers/admin_dashboard.php
index 6bd36b07..53172109 100644
--- a/modules/gallery/controllers/admin_dashboard.php
+++ b/modules/gallery/controllers/admin_dashboard.php
@@ -26,6 +26,7 @@ class Admin_Dashboard_Controller extends Admin_Controller {
$view->sidebar = "<div id=\"g-admin-dashboard-sidebar\">" .
block_manager::get_html("dashboard_sidebar") .
"</div>";
+ $view->content->obsolete_modules_message = module::get_obsolete_modules_message();
print $view;
}