From: Evan Prodromou Date: Thu, 25 Jun 2009 18:23:47 +0000 (-0700) Subject: fix caching for conversations, again X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c96572c0909793fd1f38def21f2577e13d98766d;p=quix0rs-gnu-social.git fix caching for conversations, again --- diff --git a/classes/Notice.php b/classes/Notice.php index 9960d3d0aa..5bcfa896e0 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -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');