From 06964711162bf4e115ea5bcb6496e426a2d8ab76 Mon Sep 17 00:00:00 2001 From: Mathieu Lutfy Date: Wed, 9 Mar 2016 10:33:29 -0500 Subject: [PATCH] CRM-18197: Activity report: fix view-contact links when multiple assign/target contacts. --- CRM/Report/Form/Activity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Report/Form/Activity.php b/CRM/Report/Form/Activity.php index 84bc5ea730..4e407ad8c6 100644 --- a/CRM/Report/Form/Activity.php +++ b/CRM/Report/Form/Activity.php @@ -433,7 +433,7 @@ class CRM_Report_Form_Activity extends CRM_Report_Form { strstr($clause, 'civicrm_email_contact_target_email') || strstr($clause, 'civicrm_phone_contact_target_phone') ) { - $this->_selectClauses[$key] = "GROUP_CONCAT($clause SEPARATOR '; ') as $clause"; + $this->_selectClauses[$key] = "GROUP_CONCAT($clause SEPARATOR ';') as $clause"; } } } -- 2.25.1