[ticket/12352] Add missing $ to md5_mybb and md5_vb driver

PHPBB3-12352
This commit is contained in:
Marc Alexander 2014-05-29 14:08:10 +02:00
parent 146d3cfe75
commit 61a5fd59cf
2 changed files with 2 additions and 2 deletions

View file

@ -46,7 +46,7 @@ class md5_mybb extends base
*/
public function check($password, $hash, $user_row = array())
{
if (empty(hash) || !isset($user_row['user_passwd_salt']))
if (empty($hash) || !isset($user_row['user_passwd_salt']))
{
return false;
}

View file

@ -46,7 +46,7 @@ class md5_vb extends base
*/
public function check($password, $hash, $user_row = array())
{
if (empty(hash) || !isset($user_row['user_passwd_salt']))
if (empty($hash) || !isset($user_row['user_passwd_salt']))
{
return false;
}