Issue 11156: Display "49+" notifications if there are 50 or more

This commit is contained in:
Michael 2022-02-01 05:27:11 +00:00
parent 6b93becf7b
commit 4658cc505b

View file

@ -350,9 +350,11 @@ function ping_init(App $a)
} }
if ($format == 'json') { if ($format == 'json') {
$notification_count = $sysnotify_count + $intro_count + $register_count;
$data['groups'] = $groups_unseen; $data['groups'] = $groups_unseen;
$data['forums'] = $forums_unseen; $data['forums'] = $forums_unseen;
$data['notification'] = $sysnotify_count + $intro_count + $register_count; $data['notification'] = ($notification_count < 50) ? $notification_count : '49+';
$data['notifications'] = $notifications; $data['notifications'] = $notifications;
$data['sysmsgs'] = [ $data['sysmsgs'] = [
'notice' => $sysmsgs, 'notice' => $sysmsgs,