diff options
author | friendica <info@friendica.com> | 2014-07-03 18:29:32 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-07-03 18:29:32 -0700 |
commit | 5ed9444beea56c8d4559a01434406f8de8588c57 (patch) | |
tree | 8747ae03cbf52f3518f1d6f6d1b91281747d18bf /mod | |
parent | 23409984c40f3d6fe527c35f1c78f42494503955 (diff) | |
download | volse-hubzilla-5ed9444beea56c8d4559a01434406f8de8588c57.tar.gz volse-hubzilla-5ed9444beea56c8d4559a01434406f8de8588c57.tar.bz2 volse-hubzilla-5ed9444beea56c8d4559a01434406f8de8588c57.zip |
some initial work towards email address verification
Diffstat (limited to 'mod')
-rw-r--r-- | mod/regver.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/mod/regver.php b/mod/regver.php new file mode 100644 index 000000000..988fa8c0d --- /dev/null +++ b/mod/regver.php @@ -0,0 +1,24 @@ +<?php + +require_once('include/account.php'); + +function regver_content(&$a) { + + global $lang; + + $_SESSION['return_url'] = $a->cmd; + + if(argc() != 3) + killme(); + + $cmd = argv(1); + $hash = argv(2); + + if($cmd === 'deny') { + if (!user_deny($hash)) killme(); + } + + if($cmd === 'allow') { + if (!user_approve($hash)) killme(); + } +} |