From 0df91fd9a2a78d12378fcb7d9f7cba33f33e845e Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Tue, 4 Jan 2011 14:46:08 +0100 Subject: Manage user registrations in REGISTER_APPROVE mode. --- mod/notifications.php | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) (limited to 'mod/notifications.php') diff --git a/mod/notifications.php b/mod/notifications.php index 1c680794e..f11676ebf 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 .= ""; + } + } + else + notice( t('No registrations.') . EOL); + + } + return $o; -} \ No newline at end of file +} -- cgit v1.2.3 From bb0c24bd4fd159cc005f60a0808a4b37b91060b0 Mon Sep 17 00:00:00 2001 From: Friendika Date: Tue, 4 Jan 2011 22:17:58 -0800 Subject: prevent admin hijacks --- mod/notifications.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mod/notifications.php') diff --git a/mod/notifications.php b/mod/notifications.php index f11676ebf..c425d092e 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -127,7 +127,7 @@ function notifications_content(&$a) { notice( t('No notifications.') . EOL); if ($a->config['register_policy'] = REGISTER_APPROVE && - $a->config['admin_email'] = $a->user['email']){ + $a->config['admin_email'] === $a->user['email']){ $o .= load_view_file('view/registrations-top.tpl'); $r = q("SELECT `register`.*, `contact`.`name`, `user`.`email` -- cgit v1.2.3