module updates

This commit is contained in:
redmatrix
2016-04-18 20:38:38 -07:00
parent 2a61817bad
commit 2a4e8972e0
317 changed files with 27211 additions and 26132 deletions

28
Zotlabs/Module/Regver.php Normal file
View 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();
}
}
}