diff options
-rw-r--r-- | lib/private/Memcache/Factory.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Memcache/Factory.php b/lib/private/Memcache/Factory.php index a44f0127651..7fac31c433d 100644 --- a/lib/private/Memcache/Factory.php +++ b/lib/private/Memcache/Factory.php @@ -175,7 +175,7 @@ class Factory implements ICacheFactory { * @return ICache */ public function createLocal(string $prefix = ''): ICache { - $globalPrefix = $this->getGlobalPrefix(); + $globalPrefix = 'prefix'; if (is_null($globalPrefix)) { return new ArrayCache($prefix); } |