From 72d787c20bf70701f6627e6481136a843ce96d71 Mon Sep 17 00:00:00 2001 From: Thijs Kinkhorst <thijs@kinkhorst.com> Date: Sat, 24 Oct 2015 18:51:56 +0000 Subject: [PATCH] Correct name for memcache prefix config option. --- lib/SimpleSAML/Store/Memcache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SimpleSAML/Store/Memcache.php b/lib/SimpleSAML/Store/Memcache.php index 08d2f052a..528268346 100644 --- a/lib/SimpleSAML/Store/Memcache.php +++ b/lib/SimpleSAML/Store/Memcache.php @@ -23,7 +23,7 @@ class SimpleSAML_Store_Memcache extends SimpleSAML_Store */ protected function __construct() { $config = SimpleSAML_Configuration::getInstance(); - $this->prefix = $config->getString('memcache_store.name', 'simpleSAMLphp'); + $this->prefix = $config->getString('memcache_store.prefix', 'simpleSAMLphp'); } -- GitLab