]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Memcache::set() 3rd param should be flags (4th is expire). This throws a "2 lowest...
authorJames Walker <walkah@walkah.net>
Thu, 21 Oct 2010 16:20:14 +0000 (12:20 -0400)
committerJames Walker <walkah@walkah.net>
Thu, 21 Oct 2010 16:20:14 +0000 (12:20 -0400)
classes/Status_network_tag.php

index a5893c114181aa1c724d701841ed21f963c0fa1a..3398ac8c8496f6f6b52777c61fc28dcbb1327d1a 100644 (file)
@@ -99,7 +99,7 @@ class Status_network_tag extends Safe_DataObject
 
         if (Status_network::$cache) {
             $packed = implode('|', $result);
-            Status_network::$cache->set($key, $packed, 3600);
+            Status_network::$cache->set($key, $packed, 0, 3600);
         }
 
         return $result;