Merge pull request #2967 from Hypolite/issue/#2955

ping.php: Prevent $register_count from being undefined
This commit is contained in:
Michael Vogel 2016-11-22 21:00:34 +01:00 committed by GitHub
commit 61da46677d
1 changed files with 1 additions and 2 deletions

View File

@ -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;