summaryrefslogtreecommitdiffstats
path: root/lib/SimpleSAML/Store
diff options
context:
space:
mode:
authorOlav Morken <olav.morken@uninett.no>2010-09-09 08:50:47 +0000
committerOlav Morken <olav.morken@uninett.no>2010-09-09 08:50:47 +0000
commit6ac2c2d4ffb30ba975302dc93b0da70099ac6830 (patch)
treeb49cdbb900175b5ebb3bd31c3108c6f3b3db3073 /lib/SimpleSAML/Store
parentadd24fd6082cf562a4a343d6fb64ef47ca29bb01 (diff)
downloadsimplesamlphp-6ac2c2d4ffb30ba975302dc93b0da70099ac6830.zip
simplesamlphp-6ac2c2d4ffb30ba975302dc93b0da70099ac6830.tar.gz
simplesamlphp-6ac2c2d4ffb30ba975302dc93b0da70099ac6830.tar.bz2
Store_Memcache: Properly invoke the delete()-method.
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2536 44740490-163a-0410-bde0-09ae8108e29a
Diffstat (limited to 'lib/SimpleSAML/Store')
-rw-r--r--lib/SimpleSAML/Store/Memcache.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/SimpleSAML/Store/Memcache.php b/lib/SimpleSAML/Store/Memcache.php
index b7a0181..ccccda0 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);
}
}