diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-09-29 18:21:07 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-09-29 18:21:07 -0400 |
commit | bf661a5e840f0910cd999b9cc4c0a25036e3ee8b (patch) | |
tree | 995e24a68eca615d4b732ae71d0d25eec7e4db63 /classes/Notice.php | |
parent | eafc2d6e33993df07616541ef032c2ee48d1c8d7 (diff) |
blow cache in Notice for tags
darcs-hash:20080929222107-5ed1f-37f079239b11b8ab13d8d33c850351f703d51371.gz
Diffstat (limited to 'classes/Notice.php')
-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 3402e2b30..04ac6d7d4 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -150,7 +150,7 @@ class Notice extends Memcached_DataObject $tag->notice_id = $this->id; if ($tag->find()) { while ($tag->fetch()) { - $tag->blowCache(); + $cache->delete(common_cache_key('notice_tag:notice_stream:' . $tag->tag)); } } $tag->free(); |