From 643a7fba9b6fbf5ad12bf81f2bd59658e8148797 Mon Sep 17 00:00:00 2001 From: Janos SUTO Date: Sun, 18 Feb 2024 12:28:11 +0100 Subject: [PATCH] Fixed typo in index.php invoking memcached Signed-off-by: Janos SUTO --- webui/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/index.php b/webui/index.php index e6deee13..080aa23e 100644 --- a/webui/index.php +++ b/webui/index.php @@ -48,7 +48,7 @@ Registry::set('sphxrw', $sphxrw); if(MEMCACHED_ENABLED) { - $memcache = new Memcache(); + $memcache = new Memcached(); foreach ($memcached_servers as $m){ $memcache->addServer($m[0], $m[1]); }