X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnotify.php;h=8ae925a0653cd8eee0b14381335b113075350836;hb=407b2397cbb25a1de9252f16279dfdd786ffade1;hp=2cb434ae98c6d41530caa5b05a5dbb62667666ad;hpb=ead9d8623683f8ecdbe9b75bb7fd031d89d54ebe;p=friendica.git diff --git a/mod/notify.php b/mod/notify.php index 2cb434ae98..8ae925a065 100644 --- a/mod/notify.php +++ b/mod/notify.php @@ -1,12 +1,16 @@ argc > 2 && $a->argv[1] === 'mark' && $a->argv[2] === 'all' ) { + if ($a->argc > 2 && $a->argv[1] === 'mark' && $a->argv[2] === 'all') { $r = $nm->setAllSeen(); $j = json_encode(['result' => ($r) ? 'success' : 'fail']); echo $j; killme(); } - } -function notify_content(App $a) { +function notify_content(App $a) +{ if (! local_user()) { return Login::form(); } @@ -59,7 +63,7 @@ function notify_content(App $a) { $r = $nm->getAll(['seen'=>0]); if (DBM::is_result($r) > 0) { foreach ($r as $it) { - $notif_content .= replace_macros($not_tpl,[ + $notif_content .= replace_macros($not_tpl, [ '$item_link' => System::baseUrl(true).'/notify/view/'. $it['id'], '$item_image' => $it['photo'], '$item_text' => strip_tags(bbcode($it['msg'])), @@ -67,16 +71,14 @@ function notify_content(App $a) { ]); } } else { - $notif_content .= t('No more system notifications.'); + $notif_content .= L10n::t('No more system notifications.'); } $o .= replace_macros($notif_tpl, [ - '$notif_header' => t('System Notifications'), + '$notif_header' => L10n::t('System Notifications'), '$tabs' => false, // $tabs, '$notif_content' => $notif_content, ]); return $o; - - }