
02-09-2012, 04:19 PM
|
Member
|
|
Join Date: Jul 2011
Posts: 6
Gender: Female
Credits: 732
|
|
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
|