Merge pull request 'recherche login lower dans requête de connexion' (#48) from issue-47 into develop
Cadoles/hydra-sql/pipeline/head This commit is unstable Details

Reviewed-on: #48
This commit is contained in:
Matthieu Lamalle 2024-11-06 11:13:10 +01:00
commit 075be9b0df
2 changed files with 2 additions and 1 deletions

1
.nvmrc Normal file
View File

@ -0,0 +1 @@
lts/iron

View File

@ -103,6 +103,6 @@ class SQLLoginRequest
{
$fields = join(',', array_merge($this->getPasswordFields(), $this->getDataFields()));
return 'SELECT '.$fields.' FROM '.$this->getTableName().' WHERE '.$this->getLoginColumnName().' = :'.$this->getLoginColumnName().';';
return 'SELECT '.$fields.' FROM '.$this->getTableName().' WHERE LOWER('.$this->getLoginColumnName().') = LOWER(:'.$this->getLoginColumnName().');';
}
}