mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 14:57:37 +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())
|
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;
|
return false;
|
||||||
}
|
}
|
||||||
|
@@ -46,7 +46,7 @@ class md5_vb extends base
|
|||||||
*/
|
*/
|
||||||
public function check($password, $hash, $user_row = array())
|
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;
|
return false;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user