addConditionsToQuery adds "=" by default

This commit is contained in:
2022-05-16 10:01:16 +01:00
parent 804694c0cc
commit f6792e5053
2 changed files with 5 additions and 5 deletions

View File

@ -21,10 +21,9 @@ class Utils {
public function addConditionsToQuery(QueryInterface $query, array $conditions): void {
foreach($conditions as $condition) {
if (sizeof($condition) != 3) throw new RuntimeException('Utils::addConditionsToQuery needs each condition to consist of 3 strings');
$field = $condition[0];
$value = $condition[1];
$operator = $condition[2];
$operator = isset($condition[2]) ? $condition[2] : "=";
$query->condition($field, $value, $operator);
}
}