From 0ec1a18844bc3cf5c1ec2cece2e8fb5c0e10cec3 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Fri, 10 Apr 2015 09:48:22 +0200 Subject: [PATCH] ContactQuery: Fix query column `service' not referencing a service's name refs #8613 --- .../library/Monitoring/Backend/Ido/Query/ContactQuery.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/ContactQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/ContactQuery.php index 3d867f0d9..e4bdc88ea 100644 --- a/modules/monitoring/library/Monitoring/Backend/Ido/Query/ContactQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/ContactQuery.php @@ -37,10 +37,10 @@ class ContactQuery extends IdoQuery ), 'hosts' => array( 'host' => 'ho.name1 COLLATE latin1_general_ci', - 'host_name' => 'ho.name1', + 'host_name' => 'ho.name1' ), 'services' => array( - 'service' => 'so.name1 COLLATE latin1_general_ci', + 'service' => 'so.name2 COLLATE latin1_general_ci', 'service_description' => 'so.name2', 'service_host_name' => 'so.name1', )