X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Flostpass.php;h=1a30effd4eba82e3b7fdc9d819bd76fe7b965112;hb=2196a0577b29dcec1ba4d2c32be10fa5f0e91034;hp=3174bcd0e0572c1b7b87f3d626f38d767da25f7b;hpb=4dce3d822470537e40a0f77330d62ac05bf73806;p=friendica.git diff --git a/mod/lostpass.php b/mod/lostpass.php index 3174bcd0e0..1a30effd4e 100644 --- a/mod/lostpass.php +++ b/mod/lostpass.php @@ -1,23 +1,27 @@ config['sitename']; - $resetlink = App::get_baseurl() . '/lostpass?verify=' . $new_password; + $resetlink = System::baseUrl() . '/lostpass?verify=' . $new_password; $preamble = deindent(t(' Dear %1$s, @@ -63,21 +67,21 @@ function lostpass_post(App &$a) { Login Name: %3$s')); $preamble = sprintf($preamble, $username, $sitename); - $body = sprintf($body, $resetlink, App::get_baseurl(), $email); + $body = sprintf($body, $resetlink, System::baseUrl(), $email); notification(array( - 'type' => "SYSTEM_EMAIL", + 'type' => SYSTEM_EMAIL, 'to_email' => $email, 'subject'=> sprintf( t('Password reset requested at %s'),$sitename), 'preamble'=> $preamble, 'body' => $body)); - goaway(z_root()); + goaway(System::baseUrl()); } -function lostpass_content(App &$a) { +function lostpass_content(App $a) { if(x($_GET,'verify')) { @@ -87,7 +91,7 @@ function lostpass_content(App &$a) { $r = q("SELECT * FROM `user` WHERE `pwdreset` = '%s' LIMIT 1", dbesc($hash) ); - if (! dbm::is_result($r)) { + if (! DBM::is_result($r)) { $o = t("Request could not be verified. \x28You may have previously submitted it.\x29 Password reset failed."); return $o; } @@ -102,17 +106,19 @@ function lostpass_content(App &$a) { dbesc($new_password_encoded), intval($uid) ); - if($r) { + + /// @TODO Is DBM::is_result() okay here? + if ($r) { $tpl = get_markup_template('pwdreset.tpl'); $o .= replace_macros($tpl,array( '$lbl1' => t('Password Reset'), '$lbl2' => t('Your password has been reset as requested.'), '$lbl3' => t('Your new password is'), '$lbl4' => t('Save or copy your new password - and then'), - '$lbl5' => '' . t('click here to login') . '.', + '$lbl5' => '' . t('click here to login') . '.', '$lbl6' => t('Your password may be changed from the Settings page after successful login.'), '$newpass' => $new_password, - '$baseurl' => App::get_baseurl() + '$baseurl' => System::baseUrl() )); info("Your password has been reset." . EOL); @@ -137,10 +143,10 @@ function lostpass_content(App &$a) { ')); $preamble = sprintf($preamble, $username); - $body = sprintf($body, App::get_baseurl(), $email, $new_password); + $body = sprintf($body, System::baseUrl(), $email, $new_password); notification(array( - 'type' => "SYSTEM_EMAIL", + 'type' => SYSTEM_EMAIL, 'to_email' => $email, 'subject'=> sprintf( t('Your password has been changed at %s'),$sitename), 'preamble'=> $preamble,