From 840ecf681ef517d16d84fa6e9eb115883c2e3e27 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Thu, 12 Nov 2015 11:36:49 +0100 Subject: [PATCH] monitoring: Fix missing columns when selecting multiple services refs #5543 --- .../monitoring/application/controllers/ServicesController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/monitoring/application/controllers/ServicesController.php b/modules/monitoring/application/controllers/ServicesController.php index ae85daa7f1..798362fe41 100644 --- a/modules/monitoring/application/controllers/ServicesController.php +++ b/modules/monitoring/application/controllers/ServicesController.php @@ -53,6 +53,7 @@ protected function handleCommandForm(ObjectsCommandForm $form) { $this->serviceList->setColumns(array( 'host_display_name', + 'host_handled', 'host_name', 'host_problem', 'host_state', @@ -93,6 +94,7 @@ public function showAction() $this->view->checkNowForm = $checkNowForm; $this->serviceList->setColumns(array( 'host_display_name', + 'host_handled', 'host_name', 'host_problem', 'host_state',