From dcb7ce36d8e4e1fe34d99cc52b4e1dc5d866fada Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Sun, 14 Feb 2016 20:53:26 +0100 Subject: [PATCH] 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) --- lib/noticestream.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() {