summaryrefslogtreecommitdiff
path: root/includes/bootstrap.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-06-28 21:18:30 +0000
committerDries Buytaert <dries@buytaert.net>2006-06-28 21:18:30 +0000
commit77d695fe56cb19cc7f6fc871b9fa5633856f25f2 (patch)
tree8f05fe312c9d148def6be80c2d39f72e18ca7396 /includes/bootstrap.inc
parent824e7d4d192a0c2a908b0d7e0df2fb95015a1d3f (diff)
downloadbrdo-77d695fe56cb19cc7f6fc871b9fa5633856f25f2.tar.gz
brdo-77d695fe56cb19cc7f6fc871b9fa5633856f25f2.tar.bz2
- Patch #69341 by chx: remove some SQL queries from the Drupal bootstrap process.
Diffstat (limited to 'includes/bootstrap.inc')
-rw-r--r--includes/bootstrap.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index 946d926b4..0d8ed02ca 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -339,7 +339,7 @@ function page_get_cache() {
* The name of the bootstrap hook we wish to invoke.
*/
function bootstrap_invoke_all($hook) {
- foreach (module_list(FALSE, TRUE) as $module) {
+ foreach (module_list(TRUE, TRUE) as $module) {
drupal_load('module', $module);
module_invoke($module, $hook);
}