From 4bc3afaca41b9b26437b4cd2a33d5e4252abb8b9 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Fri, 10 Apr 2015 15:34:55 +0200 Subject: [PATCH] ServicegroupQuery: Make query column `servicegroup_alias' case-insensitive refs #8613 --- .../library/Monitoring/Backend/Ido/Query/ServicegroupQuery.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/ServicegroupQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/ServicegroupQuery.php index c9ab100c6..125c07005 100644 --- a/modules/monitoring/library/Monitoring/Backend/Ido/Query/ServicegroupQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/ServicegroupQuery.php @@ -9,7 +9,7 @@ class ServicegroupQuery extends IdoQuery 'servicegroups' => array( 'servicegroup' => 'sgo.name1 COLLATE latin1_general_ci', 'servicegroup_name' => 'sgo.name1', - 'servicegroup_alias' => 'sg.alias' + 'servicegroup_alias' => 'sg.alias COLLATE latin1_general_ci' ), 'services' => array( 'host' => 'so.name1 COLLATE latin1_general_ci',