Merge pull request #3927 from rabuzarus/20171121_-_fix_reg_notifs

Bugfix: show no registrations notifs if there are none
This commit is contained in:
Hypolite Petovan 2017-11-20 23:54:11 -05:00 committed by GitHub
commit 33ad6b6d7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -202,13 +202,13 @@ function ping_init(App $a)
if ($a->config['register_policy'] == REGISTER_APPROVE && is_site_admin()) {
$regs = q(
"SELECT `contact`.`name`, `contact`.`url`, `contact`.`micro`, `register`.`created`, COUNT(*) AS `total`
"SELECT `contact`.`name`, `contact`.`url`, `contact`.`micro`, `register`.`created`
FROM `contact` RIGHT JOIN `register` ON `register`.`uid` = `contact`.`uid`
WHERE `contact`.`self` = 1"
);
if (DBM::is_result($regs)) {
$register_count = $regs[0]['total'];
$register_count = count($regs);
}
}