Skip to content

Commit

Permalink
0037537: Administration -> User and Roles -> User Management -> Exten…
Browse files Browse the repository at this point in the history
…ded User search -> Salutation
  • Loading branch information
smeyer-ilias committed Jul 12, 2023
1 parent ef78e0b commit a7eadb4
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Services/Search/classes/class.ilRepositorySearchGUI.php
Original file line number Diff line number Diff line change
Expand Up @@ -958,8 +958,7 @@ public function __performUserSearch(): bool
}
switch ($info['type']) {
case ilUserSearchOptions::FIELD_TYPE_UDF_SELECT:
// Do a phrase query for select fields
$query_parser = $this->__parseQueryString('"' . $query_string . '"');
$query_parser = $this->__parseQueryString($query_string);

// no break
case ilUserSearchOptions::FIELD_TYPE_UDF_TEXT:
Expand All @@ -979,9 +978,7 @@ public function __performUserSearch(): bool
$this->__storeEntries($result_obj);
break;
}

// Do a phrase query for select fields
$query_parser = $this->__parseQueryString('"' . $query_string . '"', true, true);
$query_parser = $this->__parseQueryString($query_string, true, true);

// no break
case ilUserSearchOptions::FIELD_TYPE_TEXT:
Expand Down

0 comments on commit a7eadb4

Please sign in to comment.