diff options
author | root <root@diekershoff.homeunix.net> | 2011-01-05 07:37:01 +0100 |
---|---|---|
committer | root <root@diekershoff.homeunix.net> | 2011-01-05 07:37:01 +0100 |
commit | 830a56723c37e206f2114c4bc4ade080f475cba9 (patch) | |
tree | 01741f63f64cdd7f430fd70deba74cc510a20846 /mod/notifications.php | |
parent | cbace1639e7eb9c543a2ba0b51619a7f4164ae64 (diff) | |
parent | bb0c24bd4fd159cc005f60a0808a4b37b91060b0 (diff) | |
download | volse-hubzilla-830a56723c37e206f2114c4bc4ade080f475cba9.tar.gz volse-hubzilla-830a56723c37e206f2114c4bc4ade080f475cba9.tar.bz2 volse-hubzilla-830a56723c37e206f2114c4bc4ade080f475cba9.zip |
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'mod/notifications.php')
-rw-r--r-- | mod/notifications.php | 28 |
1 files changed, 27 insertions, 1 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 +} |