We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e62356 commit de4021bCopy full SHA for de4021b
src/Auth/Source/SQL2.php
@@ -482,7 +482,7 @@ protected function login(
482
}
483
484
485
- if (($passwordHash === null) || (!password_verify($password, $passwordHash))) {
+ if ($passwordHash == null || (!password_verify($password, $passwordHash))) {
486
Logger::error('sqlauth:' . $this->authId . ': Auth query ' . $queryname .
487
' password verification failed');
488
/* Authentication with verify_password() failed, however that only means that
0 commit comments