? hook_boot_cache_invalidate.patch ? sites/all/modules ? sites/default/files Index: includes/bootstrap.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/bootstrap.inc,v retrieving revision 1.237 diff -u -p -r1.237 bootstrap.inc --- includes/bootstrap.inc 15 Oct 2008 16:05:51 -0000 1.237 +++ includes/bootstrap.inc 16 Oct 2008 13:58:39 -0000 @@ -1102,13 +1102,13 @@ function _drupal_bootstrap($phase) { $conf = variable_init(isset($conf) ? $conf : array()); // Load module handling. require_once DRUPAL_ROOT . '/includes/module.inc'; - $cache_mode = variable_get('cache', CACHE_DISABLED); - // Get the page from the cache. - $cache = $cache_mode == CACHE_DISABLED ? '' : page_get_cache(); // If the skipping of the bootstrap hooks is not enforced, call hook_boot. if ($cache_mode != CACHE_AGGRESSIVE) { bootstrap_invoke_all('boot'); } + $cache_mode = variable_get('cache', CACHE_DISABLED); + // Get the page from the cache. + $cache = $cache_mode == CACHE_DISABLED ? '' : page_get_cache(); // If there is a cached page, display it. if ($cache) { drupal_page_cache_header($cache);