|
Did as you suggested with newly downloaded copy of 3.32. Didn't help. So I started troubleshooting and found the problem. In emails.php, line 123 says:
Your new password is: {$newpass}
I changed that $newpass which had been MD5 encrypted by member.php line 250 -" $newpass = md5($genpass); "- to $genpass and now it's working properly.
The script did all the processing of the temporary password correctly. It was just being told to send the wrong one to the user. The above change has taken care of that.
|