X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fregmod.php;h=2cbe810bc94c4e62c3a8e8cbf5ebfc9d9131735d;hb=7defb1768bff1c3da7ea63957cf8c7c928d379ab;hp=49a7194934d3b5502a2c5acb939e895c51e26017;hpb=34eedb503acad59d649f96d3250b40cc1c84047c;p=friendica.git diff --git a/mod/regmod.php b/mod/regmod.php index 49a7194934..2cbe810bc9 100644 --- a/mod/regmod.php +++ b/mod/regmod.php @@ -4,16 +4,23 @@ function regmod_content(&$a) { + $_SESSION['return_url'] = $a->cmd; + if(! local_user()) { notice( t('Please login.') . EOL); $o .= '

' . login(($a->config['register_policy'] == REGISTER_CLOSED) ? 0 : 1); return $o; } + if((! (x($a->config,'admin_email'))) || ($a->config['admin_email'] !== $a->user['email'])) { + notice( t('Permission denied.') . EOL); + return ''; + } + if($a->argc != 3) killme(); - $cmd = $a->argv[1]; + $cmd = $a->argv[1]; $hash = $a->argv[2]; @@ -44,7 +51,7 @@ function regmod_content(&$a) { $r = q("DELETE FROM `register` WHERE `hash` = '%s' LIMIT 1", dbesc($register[0]['hash']) ); - notice( t('Registration revoked for ') . $user[0]['username'] . EOL); + notice( sprintf(t('Registration revoked for %s'), $user[0]['username']) . EOL); return; } @@ -63,6 +70,15 @@ function regmod_content(&$a) { intval($register[0]['uid']) ); + $r = q("SELECT * FROM `profile` WHERE `uid` = %d AND `is-default` = 1", + intval($user[0]['uid']) + ); + if(count($r) && $r[0]['net-publish']) { + $url = $a->get_baseurl() . '/profile/' . $user[0]['nickname']; + if($url && strlen(get_config('system','directory_submit_url'))) + proc_run('php',"include/directory.php","$url"); + } + $email_tpl = load_view_file("view/register_open_eml.tpl"); $email_tpl = replace_macros($email_tpl, array( '$sitename' => $a->config['sitename'], @@ -73,8 +89,8 @@ function regmod_content(&$a) { '$uid' => $user[0]['uid'] )); - $res = mail($user[0]['email'], t('Registration details for '). $a->config['sitename'], - $email_tpl,'From: ' . t('Administrator@') . $_SERVER[SERVER_NAME] ); + $res = mail($user[0]['email'], sprintf(t('Registration details for %s'), $a->config['sitename']), + $email_tpl,'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] ); if($res) { notice( t('Account approved.') . EOL );