From 1e6226711cef0c3cba1f8f8855b193ccaac229ee Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Fri, 14 Nov 2014 21:55:33 -0500 Subject: [PATCH] CRM-15603 - Fix extra spaces in 'Contact Type' label --- CRM/Report/Form/Contact/Relationship.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Report/Form/Contact/Relationship.php b/CRM/Report/Form/Contact/Relationship.php index db3adbd89c..547a08dede 100644 --- a/CRM/Report/Form/Contact/Relationship.php +++ b/CRM/Report/Form/Contact/Relationship.php @@ -84,7 +84,7 @@ class CRM_Report_Form_Contact_Relationship extends CRM_Report_Form { 'type' => CRM_Report_Form::OP_STRING, ), 'contact_type_a' => - array('title' => ts('Contact Type A'), + array('title' => ts('Contact Type A'), 'name' => 'contact_type', 'operatorType' => CRM_Report_Form::OP_MULTISELECT, 'options' => $contact_type, @@ -129,7 +129,7 @@ class CRM_Report_Form_Contact_Relationship extends CRM_Report_Form { 'type' => CRM_Report_Form::OP_STRING, ), 'contact_type_b' => - array('title' => ts('Contact Type B'), + array('title' => ts('Contact Type B'), 'name' => 'contact_type', 'operatorType' => CRM_Report_Form::OP_MULTISELECT, 'options' => $contact_type, -- 2.25.1