Host- and Service multiselection: Ensure dashboard compliance
refs #7876
This commit is contained in:
parent
54a370ca22
commit
4b43fbe527
|
@ -26,7 +26,7 @@ class Monitoring_HostsController extends Controller
|
|||
public function init()
|
||||
{
|
||||
$hostList = new HostList($this->backend);
|
||||
$hostList->setFilter(Filter::fromQueryString((string) $this->params));
|
||||
$hostList->setFilter(Filter::fromQueryString((string) $this->params->without('view')));
|
||||
$this->hostList = $hostList;
|
||||
}
|
||||
|
||||
|
|
|
@ -27,7 +27,9 @@ class Monitoring_ServicesController extends Controller
|
|||
public function init()
|
||||
{
|
||||
$serviceList = new ServiceList($this->backend);
|
||||
$serviceList->setFilter(Filter::fromQueryString((string) $this->params->without('service_problem', 'service_handled')));
|
||||
$serviceList->setFilter(Filter::fromQueryString(
|
||||
(string) $this->params->without('service_problem', 'service_handled', 'view')
|
||||
));
|
||||
$this->serviceList = $serviceList;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue