diff options
author | Evan Prodromou <evan@status.net> | 2009-11-08 21:41:43 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-11-08 21:41:43 -0500 |
commit | 691beefd0f3755bab195279b1c0d7cc583942b72 (patch) | |
tree | 8c2e51f14d45759e57639ae90e999c192dcd0a17 /classes/Notice.php | |
parent | 76b0e6e6f4151235d5032d1aa90f0937b415bd87 (diff) | |
parent | aa0d9a86152d2485de6de5ec572ae87085ebe780 (diff) |
Merge branch '0.9.x' into adminpanel
Diffstat (limited to 'classes/Notice.php')
-rw-r--r-- | classes/Notice.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index 9886875cb..32a8b693c 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -146,7 +146,7 @@ class Notice extends Memcached_DataObject /* Add them to the database */ foreach(array_unique($hashtags) as $hashtag) { - /* elide characters we don't want in the tag */ + /* elide characters we do not want in the tag */ $this->saveTag($hashtag); } return true; @@ -1105,7 +1105,7 @@ class Notice extends Memcached_DataObject if (empty($recipient)) { continue; } - // Don't save replies from blocked profile to local user + // Do not save replies from blocked profile to local user $recipient_user = User::staticGet('id', $recipient->id); if (!empty($recipient_user) && $recipient_user->hasBlocked($sender)) { continue; @@ -1131,7 +1131,7 @@ class Notice extends Memcached_DataObject $tagged = Profile_tag::getTagged($sender->id, $tag); foreach ($tagged as $t) { if (!$replied[$t->id]) { - // Don't save replies from blocked profile to local user + // Do not save replies from blocked profile to local user $t_user = User::staticGet('id', $t->id); if ($t_user && $t_user->hasBlocked($sender)) { continue; |