Skip to content

Commit

Permalink
FIX Cache IDs grouped by site first
Browse files Browse the repository at this point in the history
  • Loading branch information
dhensby committed Jul 19, 2017
1 parent d053c9a commit 292aaf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cache/Cache.php
Expand Up @@ -175,7 +175,7 @@ public static function factory($for, $frontend='Output', $frontendOptions=null)
$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) {
Expand Down

0 comments on commit 292aaf6

Please sign in to comment.