diff --git a/mod/ping.php b/mod/ping.php
index e7f366095d..973ecb03fe 100644
--- a/mod/ping.php
+++ b/mod/ping.php
@@ -36,6 +36,16 @@ 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'];
+ } else {
+ $register = "0";
+ }
+
+
+ $notsxml = '%s';
+
header("Content-type: text/xml");
@@ -44,23 +54,32 @@ function ping_init(&$a) {
$intro
$mail
$network
- $home
- ";
+ $home";
+ if ($register!=0) echo "$register";
+
+ echo ' ';
if ($intro>0){
foreach ($intros as $i) {
- echo sprintf ('%s',
+ echo sprintf ( $notsxml,
$a->get_baseurl().'/notification/'.$i['id'], $i['name'], $i['url'], $i['photo'], relative_date($i['datetime']), t("{0} wants to be your friend")
);
};
}
if ($mail>0){
foreach ($mails as $i) {
- var_dump($i);
- echo sprintf ('%s',
+ echo sprintf ( $notsxml,
$a->get_baseurl().'/message/'.$i['id'], $i['from-name'], $i['from-url'], $i['from-photo'], relative_date($i['created']), t("{0} sent you a message")
);
};
}
+ if ($register>0){
+ foreach ($regs as $i) {
+ echo sprintf ( $notsxml,
+ $a->get_baseurl().'/admin/users/', $i['name'], $i['url'], $i['micro'], relative_date($i['created']), t("{0} requested registration")
+ );
+ };
+ }
+
echo "