diff options
author | Dries Buytaert <dries@buytaert.net> | 2011-08-26 10:15:10 +0100 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2011-08-26 10:15:10 +0100 |
commit | 98235359be5c6af7d27d458368f514c1a324e91d (patch) | |
tree | 4003b6e8c982e89b7c0f4973c7936e04223fdd0f /includes | |
parent | d70426b221c517b86e25d993853fca447ab789e5 (diff) | |
download | brdo-98235359be5c6af7d27d458368f514c1a324e91d.tar.gz brdo-98235359be5c6af7d27d458368f514c1a324e91d.tar.bz2 |
- Patch #1259096 by Akaoni: cache Bin cache_path() is never cleaned up.
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 c3179fc7d..2f877ac2d 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -7137,7 +7137,7 @@ function drupal_flush_all_caches() { // 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_filter', 'cache_bootstrap', 'cache_page'); + $core = array('cache', 'cache_path', 'cache_filter', 'cache_bootstrap', 'cache_page'); $cache_tables = array_merge(module_invoke_all('flush_caches'), $core); foreach ($cache_tables as $table) { cache_clear_all('*', $table, TRUE); |