From 27111072924aa10c52b86dddfa5332c2e5e5a87b Mon Sep 17 00:00:00 2001 From: Marks Software GmbH Date: Mon, 16 Sep 2024 20:44:19 +0200 Subject: [PATCH] Update default cache name based on CakePHP 5.1.0 Application Skeleton https://github.com/cakephp/app/blob/61995e160bb4fbd38a744a53576b827227bda0f8/config/app.php#L112 --- src/Utility/Cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utility/Cache.php b/src/Utility/Cache.php index 56fc8b9a..7b451b8c 100644 --- a/src/Utility/Cache.php +++ b/src/Utility/Cache.php @@ -28,7 +28,7 @@ class Cache { * @var array */ protected static $_defaultConfig = [ - 'cache' => '_cake_core_', + 'cache' => '_cake_translations_', 'cachePrefix' => 'tiny_auth_', 'allowCacheKey' => self::KEY_ALLOW, 'aclCacheKey' => self::KEY_ACL,