Skip to content

Commit

Permalink
fixed error in case statement. MD5 was not working
Browse files Browse the repository at this point in the history
git-svn-id: http://mantisbt.svn.sourceforge.net/svnroot/mantisbt/trunk@498 f5dc347c-c33d-0410-90a0-b07cc1902cb9
  • Loading branch information
Kenzaburo Ito committed Oct 31, 2001
1 parent fc0babe commit f36064a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core_user_API.php
Expand Up @@ -147,7 +147,7 @@ function is_password_match( $p_test_password, $p_password ) {
return false;
}

case CRYPT:
case MD5:
if ( md5( $p_test_password ) == $p_password ) {
return true;
} else {
Expand Down

0 comments on commit f36064a

Please sign in to comment.