diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-19 05:16:55 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-19 05:16:55 +0000 |
commit | c136a2e84aade9125b7df95607949834fc02b952 (patch) | |
tree | ba685f4403efb0186bdbe76f85c9eb35df6c48f6 /core/helpers/module.php | |
parent | 5f1165698b6f1f94f43571283d9644394ec03315 (diff) |
Packager now does a clean reinstall of just the packages we want, then
rebuilds the install.sql and init_var.php files accordingly.
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; |