diff options
-rw-r--r-- | includes/common.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/includes/common.inc b/includes/common.inc index 671e46c16..725b20b68 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -6277,6 +6277,11 @@ function drupal_flush_all_caches() { foreach ($cache_tables as $table) { cache_clear_all('*', $table, TRUE); } + + // Rebuild the bootstrap module list. We do this here so that developers + // can get new hook_boot() implementations registered without having to + // write a hook_update_N() function. + _system_update_bootstrap_status(); } /** |