X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fping.php;h=ad1d4019f0f7131e1234506ca1710557f41c9e45;hb=dd0a1cf586fc37fe9a3d84af277c7504136a3bf9;hp=ba496a70bd87bdbbe7d00f6431077c8be192eabe;hpb=6b250d3ae967f304074c7b398dd56008d1c864fd;p=friendica.git diff --git a/mod/ping.php b/mod/ping.php index ba496a70bd..ad1d4019f0 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -1,11 +1,15 @@ is_friendica_app() OR !$regularnotifications) { + if ($a->is_friendica_app() || !$regularnotifications) { $notif['message'] = str_replace("{0}", $notif['name'], $notif['message']); } @@ -420,7 +434,7 @@ function ping_get_notifications($uid) intval($offset) ); - if (!$r AND !$seen) { + if (!$r && !$seen) { $seen = true; $seensql = ""; $order = "DESC"; @@ -460,12 +474,12 @@ function ping_get_notifications($uid) $notification["href"] = App::get_baseurl() . "/notify/view/" . $notification["id"]; - if ($notification["visible"] AND !$notification["spam"] AND - !$notification["deleted"] AND !is_array($result[$notification["parent"]])) { + if ($notification["visible"] && !$notification["spam"] && + !$notification["deleted"] && !is_array($result[$notification["parent"]])) { $result[$notification["parent"]] = $notification; } } - } while ((count($result) < 50) AND !$quit); + } while ((count($result) < 50) && !$quit); return($result); }