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

remotes/origin/stable45
Michael Gapczynski 14 years ago
parent 60feaf9abf
commit ca6322465d
  1. 2
      lib/user/database.php

@ -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()) {

Loading…
Cancel
Save