diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-29 02:19:52 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-29 02:19:52 +0000 |
commit | b7bfd011cb03d26d12d6adf35db4f455e985703d (patch) | |
tree | 5dfb4c773865021c8c66b8074152f58a3d3b2e2e | |
parent | f85bc9bb7b92ac5ee5ed5f93d4312163b7fad713 (diff) |
Remove extra debug call to install()
-rw-r--r-- | core/helpers/module.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/helpers/module.php b/core/helpers/module.php index 70e9bec6..1e813006 100644 --- a/core/helpers/module.php +++ b/core/helpers/module.php @@ -122,8 +122,6 @@ class module_Core { $kohana_modules[] = MODPATH . $module_name; Kohana::config_set("core.modules", $kohana_modules); - call_user_func(array($installer_class, "install")); - if (method_exists($installer_class, "install")) { call_user_func_array(array($installer_class, "install"), array()); } |