From da87e742f8df3bfaa75782caf0ee781fd8490232 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Thu, 6 Mar 2014 01:55:23 +0100 Subject: [PATCH] Treat author just as anyone else (Notice distrib) --- classes/Notice.php | 15 --------------- 1 file changed, 15 deletions(-) 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 { -- 2.39.2