summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-10-10 12:12:15 +0000
committerDries Buytaert <dries@buytaert.net>2009-10-10 12:12:15 +0000
commitf8b56341134c8ec9284299d305aa9c346af1c01c (patch)
tree8cab2b1a92dba5e0571de64d9bbf25b171cacac7 /includes
parent1878abad702e29fdaea562f4e05e0e790b25783c (diff)
downloadbrdo-f8b56341134c8ec9284299d305aa9c346af1c01c.tar.gz
brdo-f8b56341134c8ec9284299d305aa9c346af1c01c.tar.bz2
- Patch #600780 by asimmonds: fixed typo in documentation.
Diffstat (limited to 'includes')
-rw-r--r--includes/module.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/module.inc b/includes/module.inc
index 43bd83e1d..ee5446873 100644
--- a/includes/module.inc
+++ b/includes/module.inc
@@ -240,7 +240,7 @@ function module_enable($module_list, $disable_modules_installed_hook = FALSE) {
}
if (!empty($invoke_modules)) {
- // Invoke the hook_module_enable after all the modules have been
+ // Invoke hook_modules_enabled after all the modules have been
// enabled.
module_invoke_all('modules_enabled', $invoke_modules);
}
@@ -277,7 +277,7 @@ function module_disable($module_list) {
// Refresh the module list to exclude the disabled modules.
module_list(TRUE);
module_implements('', FALSE, TRUE);
- // Invoke hook_module_disable before disabling modules,
+ // Invoke hook_modules_disabled before disabling modules,
// so we can still call module hooks to get information.
module_invoke_all('modules_disabled', $invoke_modules);
// Force to regenerate the stored list of hook implementations.