$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');
}
$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');
}
// 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,