]> git.mxchange.org Git - friendica.git/blobdiff - mod/lostpass.php
Merge https://github.com/friendica/friendica into pull
[friendica.git] / mod / lostpass.php
index 8d1cf7629db26155d824d997d0b6ee004bf65047..57e6d696537c24b3e5440d751b5e1fa6c4e6625a 100644 (file)
@@ -3,18 +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' ) LIMIT 1",
-               dbesc($email),
-               dbesc($email)
+       $r = q("SELECT * FROM `user` WHERE ( `email` = '%s' OR `nickname` = '%s' ) AND `verified` = 1 AND `blocked` = 0 LIMIT 1",
+               dbesc($loginame),
+               dbesc($loginame)
        );
-       if(! count($r))
-               goaway($a->get_baseurl());
+
+       if(! count($r)) {
+               notice( t('No valid account found.') . EOL);
+               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);
@@ -24,9 +29,9 @@ function lostpass_post(&$a) {
                intval($uid)
        );
        if($r)
-               notice( t('Password reset request issued. Check your email.') . EOL);
+               info( t('Password reset request issued. Check your email.') . EOL);
 
-       $email_tpl = load_view_file("view/lostpass_eml.tpl");
+       $email_tpl = get_intltext_template("lostpass_eml.tpl");
        $email_tpl = replace_macros($email_tpl, array(
                        '$sitename' => $a->config['sitename'],
                        '$siteurl' =>  $a->get_baseurl(),
@@ -42,7 +47,7 @@ function lostpass_post(&$a) {
                        . 'Content-transfer-encoding: 8bit' );
 
 
-       goaway($a->get_baseurl());
+       goaway(z_root());
 }
 
 
@@ -58,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'];
@@ -73,7 +78,7 @@ function lostpass_content(&$a) {
                        intval($uid)
                );
                if($r) {
-                       $tpl = load_view_file('view/pwdreset.tpl');
+                       $tpl = get_markup_template('pwdreset.tpl');
                        $o .= replace_macros($tpl,array(
                                '$lbl1' => t('Password Reset'),
                                '$lbl2' => t('Your password has been reset as requested.'),
@@ -85,11 +90,11 @@ function lostpass_content(&$a) {
                                '$baseurl' => $a->get_baseurl()
 
                        ));
-                               notice("Your password has been reset." . EOL);
+                               info("Your password has been reset." . EOL);
 
 
 
-                       $email_tpl = load_view_file("view/passchanged_eml.tpl");
+                       $email_tpl = get_intltext_template("passchanged_eml.tpl");
                        $email_tpl = replace_macros($email_tpl, array(
                        '$sitename' => $a->config['sitename'],
                        '$siteurl' =>  $a->get_baseurl(),
@@ -108,7 +113,7 @@ function lostpass_content(&$a) {
        
        }
        else {
-               $tpl = load_view_file('view/lostpass.tpl');
+               $tpl = get_markup_template('lostpass.tpl');
 
                $o .= replace_macros($tpl,array(
                        '$title' => t('Forgot your Password?'),
@@ -120,4 +125,4 @@ function lostpass_content(&$a) {
                return $o;
        }
 
-}
\ No newline at end of file
+}