Login issue when not using iamdentiy for build 2034
Brought to you by:
malanhp
You have put the user password through the MD5() function twice when logging in first in the login.php file (Line: 173) and again in the login class in the check_login() function (Line: 85)
This, Obviously, Causes the user to be unable to log in (If not using iamdentity)
The easiest way to fix this is change line 85 from user.inc.php
from:
$password = $db->escapeSimple(md5($password));
to:
$password = $db->escapeSimple($password);
Fixed double MD5 hashing