Bugfix: show no registrations notifs if there are none
This commit is contained in:
parent
317d51fd53
commit
04a7291303
|
@ -202,13 +202,13 @@ function ping_init(App $a)
|
||||||
|
|
||||||
if ($a->config['register_policy'] == REGISTER_APPROVE && is_site_admin()) {
|
if ($a->config['register_policy'] == REGISTER_APPROVE && is_site_admin()) {
|
||||||
$regs = q(
|
$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`
|
FROM `contact` RIGHT JOIN `register` ON `register`.`uid` = `contact`.`uid`
|
||||||
WHERE `contact`.`self` = 1"
|
WHERE `contact`.`self` = 1"
|
||||||
);
|
);
|
||||||
|
|
||||||
if (DBM::is_result($regs)) {
|
if (DBM::is_result($regs)) {
|
||||||
$register_count = $regs[0]['total'];
|
$register_count = count($regs);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue