fix: adjust memcache config quote escape

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
Johannes kingma 2025-07-22 08:10:33 +02:00 committed by backportbot[bot]
parent c9c891ff92
commit 0d3652a3c1

View file

@ -1579,7 +1579,7 @@ $CONFIG = [
*
* Defaults to ``none``
*/
'memcache.local' => '\OC\Memcache\APCu',
'memcache.local' => '\\OC\\Memcache\\APCu',
/**
* Memory caching backend for distributed data
@ -1589,7 +1589,7 @@ $CONFIG = [
*
* Defaults to ``none``
*/
'memcache.distributed' => '\OC\Memcache\Memcached',
'memcache.distributed' => '\\OC\\Memcache\\Memcached',
/**
* Connection details for redis to use for memory caching in a single server configuration.