Fix typo
authorMichael M Slusarz <slusarz@curecanti.org>
Sat, 15 Aug 2009 19:58:49 +0000 (13:58 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Sat, 15 Aug 2009 20:06:09 +0000 (14:06 -0600)
framework/Cache/lib/Horde/Cache/Memcache.php

index de7c62a..a439e53 100644 (file)
@@ -106,7 +106,7 @@ class Horde_Cache_Memcache extends Horde_Cache_Base
      */
     public function exists($key, $lifetime = 1)
     {
-        return ($this->_get($key, $lifetime) !== false);
+        return ($this->get($key, $lifetime) !== false);
     }
 
     /**