fix registration request pings

This commit is contained in:
friendica 2012-01-04 16:14:26 -08:00
parent 378f86d046
commit b0c3dc00b9
1 changed files with 3 additions and 3 deletions

View File

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