aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
Diffstat (limited to 'mod')
-rw-r--r--mod/notifications.php28
-rw-r--r--mod/ping.php11
-rw-r--r--mod/regmod.php5
-rw-r--r--mod/settings.php4
4 files changed, 46 insertions, 2 deletions
diff --git a/mod/notifications.php b/mod/notifications.php
index 1c680794e..c425d092e 100644
--- a/mod/notifications.php
+++ b/mod/notifications.php
@@ -126,5 +126,31 @@ function notifications_content(&$a) {
else
notice( t('No notifications.') . EOL);
+ if ($a->config['register_policy'] = REGISTER_APPROVE &&
+ $a->config['admin_email'] === $a->user['email']){
+ $o .= load_view_file('view/registrations-top.tpl');
+
+ $r = q("SELECT `register`.*, `contact`.`name`, `user`.`email`
+ FROM `register`
+ LEFT JOIN `contact` ON `register`.`uid` = `contact`.`uid`
+ LEFT JOIN `user` ON `register`.`uid` = `user`.`uid`;");
+ if(($r !== false) && (count($r))) {
+ $tpl = load_view_file("view/registrations.tpl");
+ foreach($r as $rr) {
+ $o .= "<ul>";
+ $o .= replace_macros($tpl, array(
+ '$fullname' => $rr['name'],
+ '$email' => $rr['email'],
+ '$approvelink' => "regmod/allow/".$rr['hash'],
+ '$denylink' => "regmod/deny/".$rr['hash'],
+ ));
+ $o .= "</ul>";
+ }
+ }
+ else
+ notice( t('No registrations.') . EOL);
+
+ }
+
return $o;
-} \ No newline at end of file
+}
diff --git a/mod/ping.php b/mod/ping.php
index 0831e57bf..00c4a3105 100644
--- a/mod/ping.php
+++ b/mod/ping.php
@@ -25,6 +25,15 @@ function ping_init(&$a) {
);
$intro = $r[0]['total'];
+ if ($a->config['register_policy'] = REGISTER_APPROVE &&
+ $a->config['admin_email'] = $a->user['email']){
+ $r = q("SELECT COUNT(*) AS `total` FROM `register`");
+ $register = $r[0]['total'];
+ } else {
+ $register = "0";
+ }
+
+
$myurl = $a->get_baseurl() . '/profile/' . $a->user['nickname'] ;
$r = q("SELECT COUNT(*) AS `total` FROM `mail`
WHERE `uid` = %d AND `seen` = 0 AND `from-url` != '%s' ",
@@ -35,7 +44,7 @@ function ping_init(&$a) {
$mail = $r[0]['total'];
header("Content-type: text/xml");
- echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\r\n<result><intro>$intro</intro><mail>$mail</mail><net>$network</net><home>$home</home></result>\r\n";
+ echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\r\n<result><register>$register</register><intro>$intro</intro><mail>$mail</mail><net>$network</net><home>$home</home></result>\r\n";
killme();
}
diff --git a/mod/regmod.php b/mod/regmod.php
index 772351ac5..eabbec090 100644
--- a/mod/regmod.php
+++ b/mod/regmod.php
@@ -12,6 +12,11 @@ function regmod_content(&$a) {
return $o;
}
+ if((! (x($a->config,'admin_email'))) || ($a->config['admin_email'] !== $a->user['email'])) {
+ notice( t('Permission denied.') . EOL);
+ return '';
+ }
+
if($a->argc != 3)
killme();
diff --git a/mod/settings.php b/mod/settings.php
index a40883f35..9a9fde5c6 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -95,6 +95,10 @@ function settings_post(&$a) {
$email_changed = true;
if(! valid_email($email))
$err .= t(' Not valid email.');
+ if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0)) {
+ $err .= t(' Cannot change to that email.');
+ $email = $a->user['email'];
+ }
}
if(strlen($err)) {