From: friendica Date: Thu, 5 Jan 2012 00:14:26 +0000 (-0800) Subject: fix registration request pings X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b0c3dc00b9252d896d233747bdd317fb5c360d51;p=friendica.git fix registration request pings --- diff --git a/mod/ping.php b/mod/ping.php index e74ef8314c..5b9159fa46 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -128,9 +128,9 @@ function ping_init(&$a) { ); $mail = $mails[0]['total']; - if ($a->config['register_policy'] == REGISTER_APPROVE && is_site_admin()){ - $regs = q("SELECT `contact`.`name`, `contact`.`url`, `contact`.`micro`, `register`.`created`, COUNT(*) as `total` FROM `contact` RIGHT JOIN `register` ON `register`.`uid`=`contact`.`uid` WHERE `contact`.`self`=1"); - $register = $regs[0]['total']; + if ($a->config['register_policy'] == REGISTER_APPROVE && is_site_admin()) { + $regs = q("select register.created, contact.name, contact.url, contact.micro from register left join contact on register.uid = contact.uid where contact.self = 1"); + $register = count($regs); } else { $register = "0"; }