FIX Cache IDs grouped by site first

This commit is contained in:
Daniel Hensby 2017-07-19 11:29:01 +01:00
parent d053c9aaac
commit 292aaf6530
No known key found for this signature in database
GPG Key ID: B00D1E9767F0B06E
1 changed files with 1 additions and 1 deletions

2
cache/Cache.php vendored
View File

@ -175,7 +175,7 @@ class SS_Cache {
$backend = self::$backends[$backend_name];
$basicOptions = array(
'cache_id_prefix' => $for . '_' . md5(BASE_PATH) . '_',
'cache_id_prefix' => md5(BASE_PATH) . '_' . $for . '_',
);
if ($cache_lifetime >= 0) {