Fix parameters to ignore when setting a filter for the ServiceList

refs #7876
This commit is contained in:
Johannes Meyer 2015-04-20 13:18:36 +02:00
parent 5196f16bde
commit 8b18c5a60a
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class Monitoring_ServicesController extends Controller
{
$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;
}