summaryrefslogtreecommitdiff
path: root/classes/Notice.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-04-29 20:45:33 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-04-29 20:45:33 -0400
commitaee641ee1e311fb0af0f9f6d75ca7fae2c7d8477 (patch)
tree34a747d86a744b22f7a4d5db6e4362546495e778 /classes/Notice.php
parent1e8ea1eb460b163176c4d7d1e7dffa500024ef91 (diff)
make replies use new query format
Diffstat (limited to 'classes/Notice.php')
-rw-r--r--classes/Notice.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/Notice.php b/classes/Notice.php
index 2bb466155..808631f4d 100644
--- a/classes/Notice.php
+++ b/classes/Notice.php
@@ -380,9 +380,9 @@ class Notice extends Memcached_DataObject
$reply->notice_id = $this->id;
if ($reply->find()) {
while ($reply->fetch()) {
- $cache->delete(common_cache_key('user:replies:'.$reply->profile_id));
+ $cache->delete(common_cache_key('reply:stream:'.$reply->profile_id));
if ($blowLast) {
- $cache->delete(common_cache_key('user:replies:'.$reply->profile_id.';last'));
+ $cache->delete(common_cache_key('reply:stream:'.$reply->profile_id.';last'));
}
}
}