aboutsummaryrefslogblamecommitdiffstats
path: root/mod/regver.php
blob: 988fa8c0d829143afad177db0aaff43c24b5ca38 (plain) (tree)























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