Thread: Password Reset
View Single Post
  #2  
Old 02-09-2012, 04:19 PM
xCataluna xCataluna is offline
Member
 
Join Date: Jul 2011
Posts: 6
Gender: Female
Credits: 732
xCataluna is on a distinguished road
Default

I was just coming here to report (part of) this.
Apparently the Admin CP was never updated when the new password hash was released.

To fix, open admpost.php.

Around line 728, replace:
Code:
$password = md5($pass1);
With:
Code:
$password = passencr($username, $pass1);
That will let you manually reset passwords properly. :3
Reply With Quote