Treat getUsers() as case insensitive, helpful for showing proper results in the share with autocomplete

This commit is contained in:
Michael Gapczynski 2012-09-12 01:12:25 -04:00
parent 60feaf9abf
commit ca6322465d
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ class OC_User_Database extends OC_User_Backend {
* Get a list of all users.
*/
public function getUsers($search = '', $limit = null, $offset = null) {
$query = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*users` WHERE `uid` LIKE ?',$limit,$offset);
$query = OC_DB::prepare('SELECT `uid` FROM `*PREFIX*users` WHERE LOWER(`uid`) LIKE LOWER(?)',$limit,$offset);
$result = $query->execute(array($search.'%'));
$users = array();
while ($row = $result->fetchRow()) {