aboutsummaryrefslogtreecommitdiffstats
path: root/mod/regmod.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/regmod.php')
-rw-r--r--mod/regmod.php34
1 files changed, 0 insertions, 34 deletions
diff --git a/mod/regmod.php b/mod/regmod.php
deleted file mode 100644
index d500de0dc..000000000
--- a/mod/regmod.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-
-
-function regmod_content(&$a) {
-
- global $lang;
-
- $_SESSION['return_url'] = App::$cmd;
-
- if(! local_channel()) {
- info( t('Please login.') . EOL);
- $o .= '<br /><br />' . login((App::$config['system']['register_policy'] == REGISTER_CLOSED) ? 0 : 1);
- return $o;
- }
-
- if(! is_site_admin()) {
- notice( t('Permission denied.') . EOL);
- return '';
- }
-
- if(argc() != 3)
- killme();
-
- $cmd = argv(1);
- $hash = argv(2);
-
- if($cmd === 'deny') {
- if (! account_deny($hash)) killme();
- }
-
- if($cmd === 'allow') {
- if (! account_allow($hash)) killme();
- }
-}