recherche login lower dans requête de connexion #48

Merged
mlamalle merged 1 commits from issue-47 into develop 2024-11-06 11:13:11 +01:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 4e4c5d8e7b - Show all commits

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())); $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().');';
} }
} }