summaryrefslogtreecommitdiff
path: root/includes/module.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/module.inc')
-rw-r--r--includes/module.inc6
1 files changed, 2 insertions, 4 deletions
diff --git a/includes/module.inc b/includes/module.inc
index 5cf5fc464..b3c076250 100644
--- a/includes/module.inc
+++ b/includes/module.inc
@@ -7,14 +7,12 @@
*/
/**
- * Initialize all modules.
+ * Load all the modules that have been enabled in the system table.
*/
-function module_init() {
- // Load all the modules that have been enabled in the system table.
+function module_load_all() {
foreach (module_list(TRUE, FALSE) as $module) {
drupal_load('module', $module);
}
- module_invoke_all('init');
}
/**