Compare commits

..

No commits in common. "075be9b0dfc1a9c1785588ed8c9221a7d410a364" and "7032787d8c9dd8c35a85e873cc5de5b43442bdaf" have entirely different histories.

2 changed files with 1 additions and 2 deletions

1
.nvmrc
View File

@ -1 +0,0 @@
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 LOWER('.$this->getLoginColumnName().') = LOWER(:'.$this->getLoginColumnName().');';
return 'SELECT '.$fields.' FROM '.$this->getTableName().' WHERE '.$this->getLoginColumnName().' = :'.$this->getLoginColumnName().';';
}
}