From: Hypolite Petovan Date: Tue, 22 Nov 2016 19:17:05 +0000 (-0500) Subject: ping.php improvement: Prevent $register_count from being undefined X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e0322546d861e451e0bc20d5cafcd6b94c40581c;p=friendica.git ping.php improvement: Prevent $register_count from being undefined --- diff --git a/mod/ping.php b/mod/ping.php index fd42673c52..81a07a3d88 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -50,6 +50,7 @@ function ping_init(&$a) { $home_count = 0; $network_count = 0; + $register_count = 0; $groups_unseen = array(); $forums_unseen = array(); @@ -132,8 +133,6 @@ function ping_init(&$a) { if ($regs) { $register_count = $regs[0]['total']; } - } else { - $register_count = 0; } $all_events = 0;