Suppress notifications for forum users in Module\Notifications\Ping

- The bell icon is already hidden for them but the notification number showed in the page title
This commit is contained in:
Hypolite Petovan 2022-12-14 22:01:14 -05:00
parent c76795f0f8
commit 2d624e900d
1 changed files with 2 additions and 2 deletions

View File

@ -116,8 +116,8 @@ class Ping extends BaseModule
$birthday_count = 0;
$today_birthday_count = 0;
if ($this->session->getLocalUserId()) {
// Suppress notification display for forum accounts
if ($this->session->getLocalUserId() && $this->session->get('page_flags', '') != User::PAGE_FLAGS_COMMUNITY) {
if ($this->pconfig->get($this->session->getLocalUserId(), 'system', 'detailed_notif')) {
$notifications = $this->notificationRepo->selectDetailedForUser($this->session->getLocalUserId());
} else {