From: Mikael Nordfeldth Date: Sun, 14 Feb 2016 19:53:26 +0000 (+0100) Subject: Show shares in public timeline X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=dcb7ce36d8e4e1fe34d99cc52b4e1dc5d866fada;p=quix0rs-gnu-social.git Show shares in public timeline Also, the unselect rule for DELETE was useless anyway since it would already have been filtered out by not having true. (the => false stuff are for when you want ALL _except_ that) --- diff --git a/lib/noticestream.php b/lib/noticestream.php index 02b2a2da86..2b04a89ca4 100644 --- a/lib/noticestream.php +++ b/lib/noticestream.php @@ -43,7 +43,7 @@ if (!defined('GNUSOCIAL')) { exit(1); } abstract class NoticeStream { protected $selectVerbs = array(ActivityVerb::POST => true, - ActivityVerb::DELETE => false); + ActivityVerb::SHARE => true); public function __construct() {