diff options
author | Evan Prodromou <evan@status.net> | 2010-01-30 14:37:39 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-30 14:37:39 -0500 |
commit | fec8066bf76948142828b689708386861d089fb3 (patch) | |
tree | ec941e690101af3fa79f548432f5e03787182f60 | |
parent | 4ae31f3476f30cf397c0d768119be3638be6fbf0 (diff) |
error clearing tags for profiles from memcached
-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 a60dd5bcd..42878d94f 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -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; } |