X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mod%2Flostpass.php;h=57e6d696537c24b3e5440d751b5e1fa6c4e6625a;hb=56f0ee4915d1441a44670d32919777c5a3fae96b;hp=3453a0db4334a8d06957473a20ed82adf8da8aa8;hpb=4e7a5dc56ebb8d99ed06b0b303c4ee24460ae6a8;p=friendica.git diff --git a/mod/lostpass.php b/mod/lostpass.php index 3453a0db43..57e6d69653 100644 --- a/mod/lostpass.php +++ b/mod/lostpass.php @@ -3,22 +3,23 @@ function lostpass_post(&$a) { - $email = notags(trim($_POST['login-name'])); - if(! $email) - goaway($a->get_baseurl()); + $loginame = notags(trim($_POST['login-name'])); + if(! $loginame) + goaway(z_root()); $r = q("SELECT * FROM `user` WHERE ( `email` = '%s' OR `nickname` = '%s' ) AND `verified` = 1 AND `blocked` = 0 LIMIT 1", - dbesc($email), - dbesc($email) + dbesc($loginame), + dbesc($loginame) ); if(! count($r)) { notice( t('No valid account found.') . EOL); - goaway($a->get_baseurl()); + goaway(z_root()); } $uid = $r[0]['uid']; $username = $r[0]['username']; + $email = $r[0]['email']; $new_password = autoname(12) . mt_rand(100,9999); $new_password_encoded = hash('whirlpool',$new_password); @@ -46,7 +47,7 @@ function lostpass_post(&$a) { . 'Content-transfer-encoding: 8bit' ); - goaway($a->get_baseurl()); + goaway(z_root()); } @@ -62,7 +63,7 @@ function lostpass_content(&$a) { ); if(! count($r)) { notice( t("Request could not be verified. \x28You may have previously submitted it.\x29 Password reset failed.") . EOL); - goaway($a->get_baseurl()); + goaway(z_root()); return; } $uid = $r[0]['uid'];