aboutsummaryrefslogtreecommitdiffstats
path: root/mod/notifications.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-06-29 22:38:30 -0700
committerFriendika <info@friendika.com>2011-06-29 22:38:30 -0700
commit3eb0b4be2a7e0f4d8f9a518114e1daa49f46b59b (patch)
tree7bfc2d0baabdadad60d337bb9eb72bdd2cd3c3d2 /mod/notifications.php
parent58d474aa2df712e402b6c5fd1ade98df51adaa93 (diff)
downloadvolse-hubzilla-3eb0b4be2a7e0f4d8f9a518114e1daa49f46b59b.tar.gz
volse-hubzilla-3eb0b4be2a7e0f4d8f9a518114e1daa49f46b59b.tar.bz2
volse-hubzilla-3eb0b4be2a7e0f4d8f9a518114e1daa49f46b59b.zip
now that we have admin interface, completely remove register approvals from notifications
Diffstat (limited to 'mod/notifications.php')
-rw-r--r--mod/notifications.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/mod/notifications.php b/mod/notifications.php
index 90f62fa47..c6f073058 100644
--- a/mod/notifications.php
+++ b/mod/notifications.php
@@ -167,30 +167,6 @@ function notifications_content(&$a) {
else
info( t('No notifications.') . EOL);
-/*
- if ($a->config['register_policy'] == REGISTER_APPROVE &&
- $a->config['admin_email'] === $a->user['email']){
- $o .= '<h1>' . t('User registrations waiting for confirm') . '</h1>' . "\r\n";
-
- $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))) {
- $o .= '<ul>';
- foreach($r as $rr) {
- $o .= '<li>' . sprintf('%s (%s) : ', $rr['name'],$rr['email'])
- . '<a href="regmod/allow/' . $rr['hash'] .'">' . t('Approve')
- . '</a> - <a href="regmod/deny/' . $rr['hash'] . '">' . t('Deny') . '</a></li>' . "\r\n";
- }
- $o .= "</ul>";
- }
- else
- info( t('No registrations.') . EOL);
-
- }
-*/
-
$o .= paginate($a);
return $o;
}