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/regver.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/regver.php')
-rw-r--r-- | mod/regver.php | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/mod/regver.php b/mod/regver.php deleted file mode 100644 index a26843376..000000000 --- a/mod/regver.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php - -function regver_content(&$a) { - - global $lang; - - $_SESSION['return_url'] = App::$cmd; - - if(argc() != 3) - killme(); - - $cmd = argv(1); - $hash = argv(2); - - if($cmd === 'deny') { - if (! account_deny($hash)) killme(); - } - - if($cmd === 'allow') { - if (! account_approve($hash)) killme(); - } -} |