module updates
This commit is contained in:
28
Zotlabs/Module/Regver.php
Normal file
28
Zotlabs/Module/Regver.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
namespace Zotlabs\Module;
|
||||
|
||||
|
||||
class Regver extends \Zotlabs\Web\Controller {
|
||||
|
||||
function get() {
|
||||
|
||||
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();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user