summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-06-25 11:23:47 -0700
committerEvan Prodromou <evan@controlyourself.ca>2009-06-25 11:23:47 -0700
commitc96572c0909793fd1f38def21f2577e13d98766d (patch)
treed74ecf9cb3b7dd3a28d01be8a791601a4d458092 /classes
parent69f06134737fb75b6bd6208f49be284d97d0635e (diff)
fix caching for conversations, again
Diffstat (limited to 'classes')
-rw-r--r--classes/Notice.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Notice.php b/classes/Notice.php
index 9960d3d0a..5bcfa896e 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');