From c156762ab3383eab0354ebef0c0f8d760182bb71 Mon Sep 17 00:00:00 2001 From: eileen Date: Thu, 6 Jun 2019 18:34:20 +1200 Subject: [PATCH] dev/core#1015 fix regression on exporting soft credits Cut down from https://github.com/civicrm/civicrm-core/pull/14440/commits due to test fails --- CRM/Contact/BAO/Query.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Contact/BAO/Query.php b/CRM/Contact/BAO/Query.php index b56ac41f52..7136a7cc32 100644 --- a/CRM/Contact/BAO/Query.php +++ b/CRM/Contact/BAO/Query.php @@ -2709,7 +2709,7 @@ class CRM_Contact_BAO_Query { case 'civicrm_worldregion': // We can be sure from the calling function that country will already be joined in. // we really don't need world_region - we could use a pseudoconstant for it. - return "$side JOIN civicrm_worldregion ON civicrm_country.region_id = civicrm_worldregion.id "; + return " $side JOIN civicrm_worldregion ON civicrm_country.region_id = civicrm_worldregion.id "; case 'civicrm_location_type': return " $side JOIN civicrm_location_type ON civicrm_address.location_type_id = civicrm_location_type.id "; -- 2.25.1