summaryrefslogtreecommitdiff
path: root/classes/Notice.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-06-17 15:04:57 -0700
committerEvan Prodromou <evan@controlyourself.ca>2009-06-17 15:04:57 -0700
commit07f5797f2fd1a425027190d424e359a1b4c4c8be (patch)
tree36db357296bdaf8074f33a48e15e6c3d912d1307 /classes/Notice.php
parent2fbd141361b6ddab0e036b52fc23f2bfcdfd0075 (diff)
Make the personal tag streams actually work
Diffstat (limited to 'classes/Notice.php')
-rw-r--r--classes/Notice.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/classes/Notice.php b/classes/Notice.php
index 6c5558d88..50242300d 100644
--- a/classes/Notice.php
+++ b/classes/Notice.php
@@ -375,6 +375,12 @@ class Notice extends Memcached_DataObject
if ($tag->find()) {
while ($tag->fetch()) {
$tag->blowCache($blowLast);
+ $ck = 'profile:notice_ids_tagged:' . $this->profile_id . ':' . $tag->tag;
+
+ $cache->delete($ck);
+ if ($blowLast) {
+ $cache->delete($ck . ';last');
+ }
}
}
$tag->free();