diff options
author | redmatrix <git@macgirvin.com> | 2016-04-18 20:38:38 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-04-18 20:38:38 -0700 |
commit | 2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289 (patch) | |
tree | 2376d950ba2bdc7753336a3e2b94865c95c238f2 /mod/regmod.php | |
parent | 2a61817bad96526994c0499f1fc0a843a9cc9405 (diff) | |
download | volse-hubzilla-2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289.tar.gz volse-hubzilla-2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289.tar.bz2 volse-hubzilla-2a4e8972e0edfa3156d9ce54d68ce0e54c0ec289.zip |
module updates
Diffstat (limited to 'mod/regmod.php')
-rw-r--r-- | mod/regmod.php | 34 |
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(); - } -} |