Fix redirect after submitting commands to multiple objects

fixes #7711
This commit is contained in:
Eric Lippmann 2014-11-20 17:45:18 +01:00
parent dad2aab482
commit 9f109f9b93

View File

@ -26,7 +26,7 @@ class Monitoring_ServicesController extends Controller
public function init() public function init()
{ {
$serviceList = new ServiceList($this->backend); $serviceList = new ServiceList($this->backend);
$serviceList->setFilter(Filter::fromQueryString((string) $this->params)); $serviceList->setFilter(Filter::fromQueryString((string) $this->params->without('service_problem', 'service_handled')));
$this->serviceList = $serviceList; $this->serviceList = $serviceList;
} }