diff --git a/core/database.class.php b/core/database.class.php index 9b254f31..3691ff6f 100644 --- a/core/database.class.php +++ b/core/database.class.php @@ -195,7 +195,7 @@ class MemcacheCache implements CacheEngine { public function get($key) { assert(!is_null($key)); $val = $this->memcache->get($key); - if($val) { + if($val !== false) { $this->hits++; return $val; }