diff options
author | Bharat Mediratta <bharat@menalto.com> | 2013-02-20 10:22:26 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2013-02-20 10:22:26 -0800 |
commit | 42878556cf38bccfea2b9b38ab2c8dd90d1ebc88 (patch) | |
tree | 3506ae79188b69ada194d69984b9dcd9bc147b4e /modules/gallery/controllers/admin_modules.php | |
parent | 2a6896e2a51833f45cd48bca0b5048cc9633c9bd (diff) | |
parent | 94aadf03dadbfa01ba1744df60c97b6f3094ae88 (diff) |
Merge pull request #155 from shadlaws/fix_2008
#2008 - Add warnings if some active modules are obsolete.
Diffstat (limited to 'modules/gallery/controllers/admin_modules.php')
-rw-r--r-- | modules/gallery/controllers/admin_modules.php | 1 |
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; } |