From 9d5dccc484660d81bab277be4ea07af59293d264 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 21 Jan 2015 09:22:44 +0100 Subject: [PATCH] monitoring: Sort by display_name when sorting by 'Hostname' or 'Service Name' in the services overview refs #7843 --- modules/monitoring/application/controllers/ListController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/monitoring/application/controllers/ListController.php b/modules/monitoring/application/controllers/ListController.php index 46bb6245e..136b9f9a4 100644 --- a/modules/monitoring/application/controllers/ListController.php +++ b/modules/monitoring/application/controllers/ListController.php @@ -221,11 +221,11 @@ class Monitoring_ListController extends Controller 'service_last_check' => $this->translate('Last Service Check'), 'service_severity' => $this->translate('Severity'), 'service_state' => $this->translate('Current Service State'), - 'service_description' => $this->translate('Service Name'), + 'service_display_name' => $this->translate('Service Name'), 'service_state_type' => $this->translate('Hard State'), 'host_severity' => $this->translate('Host Severity'), 'host_state' => $this->translate('Current Host State'), - 'host_name' => $this->translate('Hostname'), + 'host_display_name' => $this->translate('Hostname'), 'host_address' => $this->translate('Host Address'), 'host_last_check' => $this->translate('Last Host Check') ));