remove old 'owner' filter
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
c62637da8b
commit
f9e5b33c2b
|
@ -125,11 +125,6 @@ class QuerySearchHelper {
|
|||
private function searchComparisonToDBExpr(IQueryBuilder $builder, ISearchComparison $comparison, array $operatorMap) {
|
||||
$this->validateComparison($comparison);
|
||||
|
||||
// "owner" search is done by limiting the storages queries and should not be put in the sql
|
||||
if ($comparison->getField() === 'owner') {
|
||||
return null;
|
||||
}
|
||||
|
||||
list($field, $value, $type) = $this->getOperatorFieldAndValue($comparison);
|
||||
if (isset($operatorMap[$type])) {
|
||||
$queryOperator = $operatorMap[$type];
|
||||
|
|
Loading…
Reference in New Issue