This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
Files
core/mod/regver.php
2016-03-31 16:06:03 -07:00

23 lines
298 B
PHP

<?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();
}
}