From 8b18c5a60a6873122bc4c38871e0096dce1b2ffb Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 20 Apr 2015 13:18:36 +0200 Subject: [PATCH] Fix parameters to ignore when setting a filter for the ServiceList refs #7876 --- .../monitoring/application/controllers/ServicesController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/monitoring/application/controllers/ServicesController.php b/modules/monitoring/application/controllers/ServicesController.php index d902b3b759..0f94e91aa2 100644 --- a/modules/monitoring/application/controllers/ServicesController.php +++ b/modules/monitoring/application/controllers/ServicesController.php @@ -28,7 +28,7 @@ public function init() { $serviceList = new ServiceList($this->backend); $serviceList->setFilter(Filter::fromQueryString( - (string) $this->params->without('service_problem', 'service_handled', 'view') + (string) $this->params->without(array('service_problem', 'service_handled', 'view')) )); $this->serviceList = $serviceList; }