X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fregister.php;h=cb9c1729f5891f93021e7f04da2982e91cd22941;hb=10ede7314136edb1c475e1af546a59ff4c5648cf;hp=d6343a22856004f0dc8ac7c001c8b0c99ed9ba6a;hpb=06815f1a38409e45b0c5e5184c081f964ec89e47;p=friendica.git diff --git a/mod/register.php b/mod/register.php index d6343a2285..cb9c1729f5 100644 --- a/mod/register.php +++ b/mod/register.php @@ -1,6 +1,7 @@ config['register_policy'] != REGISTER_APPROVE) { - $url = App::get_baseurl() . '/profile/' . $user['nickname']; + $url = System::baseUrl() . '/profile/' . $user['nickname']; proc_run(PRIORITY_LOW, "include/directory.php", $url); } @@ -87,13 +89,13 @@ function register_post(App $a) { $res = send_register_open_eml( $user['email'], $a->config['sitename'], - App::get_baseurl(), + System::baseUrl(), $user['username'], $result['password']); if($res) { info( t('Registration successful. Please check your email for further instructions.') . EOL ) ; - goaway(z_root()); + goaway(System::baseUrl()); } else { notice( sprintf( @@ -105,13 +107,13 @@ function register_post(App $a) { } } else { info( t('Registration successful.') . EOL ) ; - goaway(z_root()); + goaway(System::baseUrl()); } } elseif($a->config['register_policy'] == REGISTER_APPROVE) { if(! strlen($a->config['admin_email'])) { notice( t('Your registration can not be processed.') . EOL); - goaway(z_root()); + goaway(System::baseUrl()); } $hash = random_string(); @@ -144,9 +146,9 @@ function register_post(App $a) { 'source_name' => $user['username'], 'source_mail' => $user['email'], 'source_nick' => $user['nickname'], - 'source_link' => App::get_baseurl()."/admin/users/", - 'link' => App::get_baseurl()."/admin/users/", - 'source_photo' => App::get_baseurl() . "/photo/avatar/".$user['uid'].".jpg", + 'source_link' => System::baseUrl()."/admin/users/", + 'link' => System::baseUrl()."/admin/users/", + 'source_photo' => System::baseUrl() . "/photo/avatar/".$user['uid'].".jpg", 'to_email' => $admin['email'], 'uid' => $admin['uid'], 'language' => ($admin['language']?$admin['language']:'en'), @@ -160,7 +162,7 @@ function register_post(App $a) { $user['username']); info( t('Your registration is pending approval by the site owner.') . EOL ) ; - goaway(z_root()); + goaway(System::baseUrl()); } @@ -296,7 +298,7 @@ function register_content(App $a) { '$sitename' => $a->get_hostname(), '$importh' => t('Import'), '$importt' => t('Import your profile to this friendica instance'), - + '$form_security_token' => get_form_security_token("register") )); return $o;