diff --git a/modules/monitoring/library/Monitoring/Controller.php b/modules/monitoring/library/Monitoring/Controller.php index c3cbe3c2d..b6b65fc0c 100644 --- a/modules/monitoring/library/Monitoring/Controller.php +++ b/modules/monitoring/library/Monitoring/Controller.php @@ -58,9 +58,11 @@ class Controller extends IcingaWebController */ protected function applyRestriction($restriction, Filterable $view) { + $restrictions = Filter::matchAny(); foreach ($this->getRestrictions($restriction) as $filter) { - $view->applyFilter(Filter::fromQueryString($filter)); + $restrictions->addFilter(Filter::fromQueryString($filter)); } + $view->applyFilter($restrictions); return $view; } }