From 6ac2c2d4ffb30ba975302dc93b0da70099ac6830 Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Thu, 9 Sep 2010 08:50:47 +0000 Subject: [PATCH] Store_Memcache: Properly invoke the delete()-method. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2536 44740490-163a-0410-bde0-09ae8108e29a --- 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 b7a0181ea..ccccda0a1 100644 --- a/lib/SimpleSAML/Store/Memcache.php +++ b/lib/SimpleSAML/Store/Memcache.php @@ -57,7 +57,7 @@ class SimpleSAML_Store_Memcache extends SimpleSAML_Store { assert('is_string($type)'); assert('is_string($key)'); - SimpleSAML_Memcache::delete('simpleSAMLphp.' . $type . '.' . $key, $value, $expire); + SimpleSAML_Memcache::delete('simpleSAMLphp.' . $type . '.' . $key); } } -- GitLab