mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/12352] Add missing $ to md5_mybb and md5_vb driver
PHPBB3-12352
This commit is contained in:
parent
146d3cfe75
commit
61a5fd59cf
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue