Skip to content

Commit

Permalink
fix bug search
Browse files Browse the repository at this point in the history
  • Loading branch information
jturbide committed Aug 9, 2023
1 parent 39d1955 commit 0592a5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mvc/Controller/Model.php
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ protected function getFilterCondition(array $filters = null, array $whiteList =
}
}
if (!empty($queryOr)) {
$query [] = '(' . implode(') or (', $queryOr) . ')';
$query [] = '((' . implode(') or (', $queryOr) . '))';
}
}
}
Expand Down

0 comments on commit 0592a5c

Please sign in to comment.