From: Mikael Nordfeldth Date: Thu, 6 Mar 2014 00:55:23 +0000 (+0100) Subject: Treat author just as anyone else (Notice distrib) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=da87e742f8df3bfaa75782caf0ee781fd8490232;p=quix0rs-gnu-social.git Treat author just as anyone else (Notice distrib) --- diff --git a/classes/Notice.php b/classes/Notice.php index 808de55c2e..f0a7a85bff 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -1085,17 +1085,7 @@ class Notice extends Managed_DataObject $ids = array_keys($ni); - // We remove the author (if they're a local user), - // since we'll have already done this in distribute() - - $i = array_search($this->profile_id, $ids); - - if ($i !== false) { - unset($ids[$i]); - } - // Bulk insert - Inbox::bulkInsert($this, $ids); return; @@ -2066,11 +2056,6 @@ class Notice extends Managed_DataObject // have to wait Event::handle('StartNoticeDistribute', array($this)); - $user = User::getKV('id', $this->profile_id); - if ($user instanceof User) { - Inbox::insertNotice($this, $user->id); - } - // If there's a failure, we want to _force_ // distribution at this point. try {