diff options
author | Brion Vibber <brion@pobox.com> | 2010-04-14 11:09:54 +0200 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-04-14 11:09:54 +0200 |
commit | d445b977fc63a4a97b91dd7fc047029115ffaf18 (patch) | |
tree | 0554bf0797dbe0cbd9f9f05212cc2e1ccc311544 | |
parent | 946328771047974d918a167eae3e8d74211fabe8 (diff) |
move comment to correct place
-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 b416e2ff2..b0ead3c42 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -148,11 +148,11 @@ class Notice extends Memcached_DataObject //turn each into their canonical tag //this is needed to remove dupes before saving e.g. #hash.tag = #hashtag for($i=0; $i<count($hashtags); $i++) { + /* elide characters we don't want in the tag */ $hashtags[$i] = common_canonical_tag($hashtags[$i]); } 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, $hashtag); } |