X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fregmod.php;h=bbe733003a56dfe11ea9affceabd03f7be00fcb0;hb=0c9cc29a51941eb572bf16fd5489d0947d47d033;hp=2e3ca414e3408277425cea9477a2a9000e10b1fd;hpb=d6cf791677e3c676108f84e64818ba2a272f6d08;p=friendica.git diff --git a/mod/regmod.php b/mod/regmod.php index 2e3ca414e3..bbe733003a 100644 --- a/mod/regmod.php +++ b/mod/regmod.php @@ -3,7 +3,6 @@ require_once('include/enotify.php'); require_once('include/user.php'); -if(! function_exists('user_allow')) { function user_allow($hash) { $a = get_app(); @@ -38,7 +37,7 @@ function user_allow($hash) { if(count($r) && $r[0]['net-publish']) { $url = $a->get_baseurl() . '/profile/' . $user[0]['nickname']; if($url && strlen(get_config('system','directory'))) - proc_run('php',"include/directory.php","$url"); + proc_run(PRIORITY_LOW, "include/directory.php", $url); } push_lang($register[0]['language']); @@ -56,14 +55,14 @@ function user_allow($hash) { info( t('Account approved.') . EOL ); return true; } -} + } // This does not have to go through user_remove() and save the nickname // permanently against re-registration, as the person was not yet // allowed to have friends on this system -if(! function_exists('user_deny')) { + function user_deny($hash) { $register = q("SELECT * FROM `register` WHERE `hash` = '%s' LIMIT 1", @@ -92,10 +91,9 @@ function user_deny($hash) { ); notice( sprintf(t('Registration revoked for %s'), $user[0]['username']) . EOL); return true; -} + } -if(! function_exists('regmod_content')) { function regmod_content(&$a) { global $lang; @@ -133,4 +131,3 @@ function regmod_content(&$a) { killme(); } } -}