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
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ class Notice extends Memcached_DataObject
foreach(array_unique($hashtags) as $hashtag) {
/* elide characters we don't want in the tag */
$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;
}