mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-27 07:44:04 +02:00
Widget\FilterEditor: fix failing parameter checking
This commit is contained in:
parent
0af623b462
commit
c6ffdb3862
@ -585,7 +585,7 @@ class FilterEditor extends AbstractWidget
|
|||||||
} else {
|
} else {
|
||||||
$parent = $filter->getById($addTo);
|
$parent = $filter->getById($addTo);
|
||||||
$f = Filter::expression($add['column'], $add['sign'], $add['value']);
|
$f = Filter::expression($add['column'], $add['sign'], $add['value']);
|
||||||
if ($add['operator']) {
|
if (isset($add['operator'])) {
|
||||||
switch($add['operator']) {
|
switch($add['operator']) {
|
||||||
case 'AND':
|
case 'AND':
|
||||||
if ($parent->isExpression()) {
|
if ($parent->isExpression()) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user