Do not lower the sharee search

Fixes #21639

When lowering the remote search it break remotes that have uppercase
letters like foo@example.com/ownCloud/

Backends do the mathcing so they should also make sure that the search
string is converted to the format they require.
This commit is contained in:
Roeland Jago Douma 2016-01-12 10:05:09 +01:00
parent 3317dd0a8e
commit 71976a095f
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ class Sharees {
$this->limit = (int) $perPage;
$this->offset = $perPage * ($page - 1);
return $this->searchSharees(strtolower($search), $itemType, $shareTypes, $page, $perPage);
return $this->searchSharees($search, $itemType, $shareTypes, $page, $perPage);
}
/**