From c18394186255f74e2ad120459156103275f52e6a Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Sun, 13 Jun 2010 12:28:18 -0400 Subject: [PATCH] prepend the prefix to the key here also --- framework/Cache/lib/Horde/Cache/Xcache.php | 1 + 1 file changed, 1 insertion(+) diff --git a/framework/Cache/lib/Horde/Cache/Xcache.php b/framework/Cache/lib/Horde/Cache/Xcache.php index c5bb54613..4fc8b0248 100644 --- a/framework/Cache/lib/Horde/Cache/Xcache.php +++ b/framework/Cache/lib/Horde/Cache/Xcache.php @@ -107,6 +107,7 @@ class Horde_Cache_Xcache extends Horde_Cache_Base */ protected function _setExpire($key, $lifetime) { + $key = $this->_params['prefix'] . $key; if ($lifetime == 0) { // don't expire return; -- 2.11.0