Fix parameters to ignore when setting a filter for the ServiceList
refs #7876
This commit is contained in:
parent
5196f16bde
commit
8b18c5a60a
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue