diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-04-21 09:31:31 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-04-21 09:31:31 +0000 |
commit | 3fbda2307d765dde813a8cf09a01f04cd9b65ca1 (patch) | |
tree | ca9fd1435592944e4ede208c16578444ed92b906 /includes | |
parent | a7c324f42c942eb7728639ec1a58e78134d46eb1 (diff) | |
download | brdo-3fbda2307d765dde813a8cf09a01f04cd9b65ca1.tar.gz brdo-3fbda2307d765dde813a8cf09a01f04cd9b65ca1.tar.bz2 |
- Patch #375482 by mfb: avoid PDO exceptions when block module is not enabled.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index 9fe1ebe90..97efc72c3 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -4276,7 +4276,7 @@ function drupal_flush_all_caches() { node_types_rebuild(); // Don't clear cache_form - in-progress form submissions may break. // Ordered so clearing the page cache will always be the last action. - $core = array('cache', 'cache_block', 'cache_filter', 'cache_registry', 'cache_page'); + $core = array('cache', 'cache_filter', 'cache_registry', 'cache_page'); $cache_tables = array_merge(module_invoke_all('flush_caches'), $core); foreach ($cache_tables as $table) { cache_clear_all('*', $table, TRUE); |