summaryrefslogtreecommitdiff
path: root/modules/gallery/controllers/admin_modules.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_modules.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_modules.php')
-rw-r--r--modules/gallery/controllers/admin_modules.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gallery/controllers/admin_modules.php b/modules/gallery/controllers/admin_modules.php
index d13ec1c6..177a925d 100644
--- a/modules/gallery/controllers/admin_modules.php
+++ b/modules/gallery/controllers/admin_modules.php
@@ -26,6 +26,7 @@ class Admin_Modules_Controller extends Admin_Controller {
$view->page_title = t("Modules");
$view->content = new View("admin_modules.html");
$view->content->available = module::available();
+ $view->content->obsolete_modules_message = module::get_obsolete_modules_message();
print $view;
}