summaryrefslogtreecommitdiff
path: root/includes/bootstrap.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/bootstrap.inc')
-rw-r--r--includes/bootstrap.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index 28681452a..eaba64283 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -445,13 +445,13 @@ function page_get_cache() {
/**
* Call all init or exit hooks without including all modules.
*
- * @param $op
+ * @param $hook
* The name of the bootstrap hook we wish to invoke.
*/
-function bootstrap_invoke_all($op) {
+function bootstrap_invoke_all($hook) {
foreach (module_list(FALSE, TRUE) as $module) {
drupal_load('module', $module);
- module_invoke($module, $op);
+ module_invoke($module, $hook);
}
}