diff options
Diffstat (limited to 'core/helpers/module.php')
-rw-r--r-- | core/helpers/module.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/helpers/module.php b/core/helpers/module.php index b45f6c78..70e9bec6 100644 --- a/core/helpers/module.php +++ b/core/helpers/module.php @@ -24,8 +24,8 @@ * Note: by design, this class does not do any permission checking. */ class module_Core { - private static $module_names = array(); - private static $modules = array(); + public static $module_names = array(); + public static $modules = array(); static function get_version($module_name) { return ORM::factory("module")->where("name", $module_name)->find()->version; |