From bf661a5e840f0910cd999b9cc4c0a25036e3ee8b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 29 Sep 2008 18:21:07 -0400 Subject: [PATCH] blow cache in Notice for tags darcs-hash:20080929222107-5ed1f-37f079239b11b8ab13d8d33c850351f703d51371.gz --- classes/Notice.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Notice.php b/classes/Notice.php index 3402e2b307..04ac6d7d4e 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();