mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
27 lines
366 B
PHP
27 lines
366 B
PHP
<?php
|
|
namespace Zotlabs\Module;
|
|
|
|
|
|
class Regver extends \Zotlabs\Web\Controller {
|
|
|
|
function get() {
|
|
|
|
$_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();
|
|
}
|
|
}
|
|
|
|
}
|