mirror of
https://github.com/friendica/friendica
synced 2024-11-10 00:23:00 +00:00
Issue 11156: Display "49+" notifications if there are 50 or more
This commit is contained in:
parent
6b93becf7b
commit
4658cc505b
1 changed files with 3 additions and 1 deletions
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue