summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2011-08-26 10:15:10 +0100
committerDries Buytaert <dries@buytaert.net>2011-08-26 10:15:10 +0100
commit98235359be5c6af7d27d458368f514c1a324e91d (patch)
tree4003b6e8c982e89b7c0f4973c7936e04223fdd0f /modules/system
parentd70426b221c517b86e25d993853fca447ab789e5 (diff)
downloadbrdo-98235359be5c6af7d27d458368f514c1a324e91d.tar.gz
brdo-98235359be5c6af7d27d458368f514c1a324e91d.tar.bz2
- Patch #1259096 by Akaoni: cache Bin cache_path() is never cleaned up.
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 4136ecd57..922035df3 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -3004,7 +3004,7 @@ function system_cron() {
}
}
- $core = array('cache', 'cache_filter', 'cache_page', 'cache_form', 'cache_menu');
+ $core = array('cache', 'cache_path', 'cache_filter', 'cache_page', 'cache_form', 'cache_menu');
$cache_tables = array_merge(module_invoke_all('flush_caches'), $core);
foreach ($cache_tables as $table) {
cache_clear_all(NULL, $table);