mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/12352] Add missing $ to md5_mybb and md5_vb driver
PHPBB3-12352
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user