error clearing tags for profiles from memcached

This commit is contained in:
Evan Prodromou 2010-01-30 14:37:39 -05:00
parent 4ae31f3476
commit fec8066bf7

View File

@ -140,7 +140,7 @@ class Notice extends Memcached_DataObject
foreach(array_unique($hashtags) as $hashtag) { foreach(array_unique($hashtags) as $hashtag) {
/* elide characters we don't want in the tag */ /* elide characters we don't want in the tag */
$this->saveTag($hashtag); $this->saveTag($hashtag);
self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, $tag->tag); self::blow('profile:notice_ids_tagged:%d:%s', $this->profile_id, $hashtag);
} }
return true; return true;
} }