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 539b003c..a48c89ed 100644 --- a/core/helpers/module.php +++ b/core/helpers/module.php @@ -97,7 +97,7 @@ class module_Core { */ static function active() { return self::$active; - } + } /** * Install a module. This will call <module>_installer::install(), which is responsible for @@ -182,7 +182,7 @@ class module_Core { static function uninstall($module_name) { $installer_class = "{$module_name}_installer"; if (method_exists($installer_class, "uninstall")) { - call_user_func(array($installer_class, "uninstall")); + call_user_func(array($installer_class, "uninstall")); } graphics::remove_rule($module_name); |