]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
error clearing tags for profiles from memcached
authorEvan Prodromou <evan@status.net>
Sat, 30 Jan 2010 19:37:39 +0000 (14:37 -0500)
committerEvan Prodromou <evan@status.net>
Sat, 30 Jan 2010 19:37:39 +0000 (14:37 -0500)
classes/Notice.php

index a60dd5bcd787d614933c554d1f1edeb71f7ba8dd..42878d94f1aed2fc7da3c7355d41e9e64ac11268 100644 (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;
     }