diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-27 07:57:51 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-27 07:57:51 -0700 |
commit | 514915438b91f44cab1682ee7495e2ef43aeeab1 (patch) | |
tree | 814cad452cb96a6d451ce46426cfaa992972e552 /modules/gallery/helpers/module.php | |
parent | 0c6840dea28f9bd5d3bc15704708e51ed60aded9 (diff) |
Add a flag in the module.info (no_module_admin) to indicate that this module shouldn't be managed by the default module administration screen. This module will always be locked on that screen.
Diffstat (limited to 'modules/gallery/helpers/module.php')
-rw-r--r-- | modules/gallery/helpers/module.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/helpers/module.php b/modules/gallery/helpers/module.php index 27bc3784..da334370 100644 --- a/modules/gallery/helpers/module.php +++ b/modules/gallery/helpers/module.php @@ -98,7 +98,7 @@ class module_Core { $m->active = self::is_active($module_name); $m->code_version = $m->version; $m->version = self::get_version($module_name); - $m->locked = false; + $m->locked = !empty($m->no_module_admin); } // Lock certain modules |