Merge pull request #4030 from Icinga/fix/username-with-extraneous-spaces-are-not-invalid
Username with extraneous spaces are not invalid
This commit is contained in:
commit
0bbc4c7c29
|
@ -186,8 +186,9 @@ class DbUserBackend extends DbRepository implements UserBackendInterface, Inspec
|
|||
|
||||
$query = $this->ds->select()
|
||||
->from($this->prependTablePrefix('user'), $columns)
|
||||
->where('name', $username)
|
||||
->where(($this->ds->getDbType() === 'mysql' ? 'BINARY ' : '') . 'name', $username)
|
||||
->where('active', true);
|
||||
|
||||
$statement = $this->ds->getDbAdapter()->prepare($query->getSelectQuery());
|
||||
$statement->execute();
|
||||
$statement->bindColumn(1, $lob, PDO::PARAM_LOB);
|
||||
|
|
Loading…
Reference in New Issue