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)
This commit is contained in:
Mikael Nordfeldth 2016-02-14 20:53:26 +01:00
parent e2a090c9cc
commit dcb7ce36d8
1 changed files with 1 additions and 1 deletions

View File

@ -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()
{