Merge pull request #13691 from annando/always-enable-no-sharer

The option "community_no_sharer" is now always enabled
This commit is contained in:
Hypolite Petovan 2023-12-03 09:14:43 -05:00 committed by GitHub
commit f2e90e91e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 6 deletions

View file

@ -115,7 +115,7 @@ class Channel extends Timeline
$this->page['aside'] .= Widget::accountTypes('channel/' . $this->selectedTab, $this->accountTypeString);
if (!in_array($this->selectedTab, [ChannelEntity::FOLLOWERS, ChannelEntity::FORYOU]) && $this->config->get('system', 'community_no_sharer')) {
if (!in_array($this->selectedTab, [ChannelEntity::FOLLOWERS, ChannelEntity::FORYOU])) {
$this->page['aside'] .= $this->getNoSharerWidget('channel');
}

View file

@ -106,7 +106,7 @@ class Community extends Timeline
$this->page['aside'] .= Widget::accountTypes('community/' . $this->selectedTab, $this->accountTypeString);
if ($this->session->getLocalUserId() && $this->config->get('system', 'community_no_sharer')) {
if ($this->session->getLocalUserId()) {
$this->page['aside'] .= $this->getNoSharerWidget('community');
}

View file

@ -148,10 +148,6 @@ return [
// Comma separated list of hashtags that shouldn't be displayed in the trending tags
'blocked_tags' => '',
// community_no_sharer (Boolean)
// Don't display sharing accounts on the global community
'community_no_sharer' => false,
// contact_update_limit (Integer)
// How many contacts should be checked at a time?
'contact_update_limit' => 100,