diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-04-29 16:09:03 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-04-29 16:09:03 -0400 |
commit | 1e8ea1eb460b163176c4d7d1e7dffa500024ef91 (patch) | |
tree | df12bf2276cbd743f0f35124f1510e4f942796e2 /classes/Notice.php | |
parent | a4d959b8a2254d173bdf45f418f6add9f6f62cda (diff) |
Make the tag stream use ID mechanism
Diffstat (limited to 'classes/Notice.php')
-rw-r--r-- | classes/Notice.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index 6a7522bd3..2bb466155 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -328,10 +328,7 @@ class Notice extends Memcached_DataObject $tag->notice_id = $this->id; if ($tag->find()) { while ($tag->fetch()) { - $cache->delete(common_cache_key('notice_tag:notice_stream:' . $tag->tag)); - if ($blowLast) { - $cache->delete(common_cache_key('notice_tag:notice_stream:' . $tag->tag . ';last')); - } + $tag->blowCache($blowLast); } } $tag->free(); |