diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-25 11:23:47 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-25 11:23:47 -0700 |
commit | c96572c0909793fd1f38def21f2577e13d98766d (patch) | |
tree | d74ecf9cb3b7dd3a28d01be8a791601a4d458092 | |
parent | 69f06134737fb75b6bd6208f49be284d97d0635e (diff) |
fix caching for conversations, again
-rw-r--r-- | classes/Notice.php | 2 |
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'); |