From 79266142e0a208cacdc9b21f9ac92e1694d33576 Mon Sep 17 00:00:00 2001 From: Johannes kingma Date: Tue, 22 Jul 2025 08:10:33 +0200 Subject: [PATCH] fix: adjust memcache config quote escape MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ (skjnldsv) --- config/config.sample.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.sample.php b/config/config.sample.php index 89d22f697aef4..c6dd1ab475010 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1531,7 +1531,7 @@ * * Defaults to ``none`` */ -'memcache.local' => '\OC\Memcache\APCu', +'memcache.local' => '\\OC\\Memcache\\APCu', /** * Memory caching backend for distributed data @@ -1541,7 +1541,7 @@ * * 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.