From fe332897be84fdfec8eb46dd81f1a9c728fb0805 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Tue, 11 Oct 2016 14:41:25 +0000 Subject: [PATCH] IcingaHostServiceTable: sort host services by name fixes #12752 --- application/tables/IcingaHostServiceTable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/tables/IcingaHostServiceTable.php b/application/tables/IcingaHostServiceTable.php index 7432fb6c..545aa0c4 100644 --- a/application/tables/IcingaHostServiceTable.php +++ b/application/tables/IcingaHostServiceTable.php @@ -88,7 +88,7 @@ class IcingaHostServiceTable extends QuickTable array('h' => 'icinga_host'), 'h.id = s.host_id', array() - ); + )->order('s.object_name'); return $query; }