mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
22 lines
296 B
PHP
22 lines
296 B
PHP
<?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 (! account_deny($hash)) killme();
|
|
}
|
|
|
|
if($cmd === 'allow') {
|
|
if (! account_approve($hash)) killme();
|
|
}
|
|
}
|