forked from GNUsocial/gnu-social
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:
parent
e2a090c9cc
commit
dcb7ce36d8
@ -43,7 +43,7 @@ if (!defined('GNUSOCIAL')) { exit(1); }
|
|||||||
abstract class NoticeStream
|
abstract class NoticeStream
|
||||||
{
|
{
|
||||||
protected $selectVerbs = array(ActivityVerb::POST => true,
|
protected $selectVerbs = array(ActivityVerb::POST => true,
|
||||||
ActivityVerb::DELETE => false);
|
ActivityVerb::SHARE => true);
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user