]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/cache.php
invert if for cache handling
[quix0rs-gnu-social.git] / lib / cache.php
index 31d2f84d2da657ea9e80d918d23d026fcf81312a..9ea531c073e29a5cb38d19b451d6ad997e7faf45 100644 (file)
@@ -70,7 +70,7 @@ class Cache
     {
         $value = null;
 
-        if (!Event::handle('StartCacheGet', array(&$key, &$value))) {
+        if (Event::handle('StartCacheGet', array(&$key, &$value))) {
             if (array_key_exists($key, $this->_items)) {
                 common_log(LOG_INFO, 'Cache HIT for key ' . $key);
                 $value = $this->_items[$key];
@@ -87,7 +87,7 @@ class Cache
     {
         $success = false;
 
-        if (!Event::handle('StartCacheSet', array(&$key, &$value, &$flag, &$expiry, &$success))) {
+        if (Event::handle('StartCacheSet', array(&$key, &$value, &$flag, &$expiry, &$success))) {
             common_log(LOG_INFO, 'Setting cache value for key ' . $key);
             $this->_items[$key] = $value;
             $success = true;
@@ -101,7 +101,7 @@ class Cache
     {
         $success = false;
 
-        if (!Event::handle('StartCacheDelete', array(&$key, &$success))) {
+        if (Event::handle('StartCacheDelete', array(&$key, &$success))) {
             if (array_key_exists($key, $this->_items[$key])) {
                 common_log(LOG_INFO, 'Deleting cache value for key ' . $key);
                 unset($this->_items[$key]);