mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-04-08 17:15:08 +02:00
FilterExpression: Perform a null check if *
This commit is contained in:
parent
62d7ca8e97
commit
a0b8829f81
@ -173,6 +173,10 @@ class FilterExpression extends Filter
|
||||
return false;
|
||||
}
|
||||
|
||||
if (trim($this->expression) === '*') {
|
||||
return $rowValue !== null;
|
||||
}
|
||||
|
||||
if ($this->caseSensitive) {
|
||||
$expression = $this->expression;
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user