From 07c48d63eeaebfa920be0b111d9d0d5341c50142 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Fri, 1 Feb 2019 14:05:19 +0100 Subject: [PATCH] ServicesController: Already hide ignored services to reschedule in the preview list refs #3665 --- .../monitoring/application/controllers/ServicesController.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/monitoring/application/controllers/ServicesController.php b/modules/monitoring/application/controllers/ServicesController.php index 6c826b304..15d972921 100644 --- a/modules/monitoring/application/controllers/ServicesController.php +++ b/modules/monitoring/application/controllers/ServicesController.php @@ -125,7 +125,9 @@ class ServicesController extends Controller $this->view->toggleFeaturesForm = $toggleFeaturesForm; if ($activeChecksEnabled) { - $this->view->rescheduleAllLink = Url::fromRequest()->setPath('monitoring/services/reschedule-check'); + $this->view->rescheduleAllLink = Url::fromRequest() + ->setPath('monitoring/services/reschedule-check') + ->addParams(['service_active_checks_enabled' => true]); } $this->view->downtimeAllLink = Url::fromRequest()->setPath('monitoring/services/schedule-downtime');