Update application/security/LoginManager.php
Co-authored-by: ArthurHoaro <arthur@hoa.ro>
This commit is contained in:
parent
21e5df5ee8
commit
9ba6982ea3
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ public function isLoggedIn()
|
||||||
public function checkCredentials($remoteIp, $clientIpId, $login, $password)
|
public function checkCredentials($remoteIp, $clientIpId, $login, $password)
|
||||||
{
|
{
|
||||||
// Check login matches config
|
// Check login matches config
|
||||||
if ($login != $this->configManager->get('credentials.login')) {
|
if ($login !== $this->configManager->get('credentials.login')) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue