]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
fix caching for conversations, again
authorEvan Prodromou <evan@controlyourself.ca>
Thu, 25 Jun 2009 18:23:47 +0000 (11:23 -0700)
committerEvan Prodromou <evan@controlyourself.ca>
Thu, 25 Jun 2009 18:23:47 +0000 (11:23 -0700)
classes/Notice.php

index 9960d3d0aaa834da7db7f8aa49497483c5505c87..5bcfa896e07a0bc29a3e16069f1fbff2a99dfa66 100644 (file)
@@ -360,7 +360,7 @@ class Notice extends Memcached_DataObject
     {
         $cache = common_memcache();
         if ($cache) {
-            $ck = 'notice:conversation_ids:'.$this->conversation;
+            $ck = common_cache_key('notice:conversation_ids:'.$this->conversation);
             $cache->delete($ck);
             if ($blowLast) {
                 $cache->delete($ck.';last');