Skip to content
Snippets Groups Projects
Commit 3b2f7337 authored by Dave Greenberg's avatar Dave Greenberg
Browse files

Merge pull request #2300 from davecivicrm/CRM-13995

CRM -13995 - Additional change needed to get Country column exported for merge into h...
parents df5ec56e b07c1873
No related branches found
No related tags found
No related merge requests found
......@@ -880,6 +880,9 @@ INSERT INTO {$componentTable} SELECT distinct gc.contact_id FROM civicrm_group_c
elseif ( is_object($relDAO) && $relationField == 'state_province' ) {
$fieldValue = CRM_Core_PseudoConstant::stateProvince($relDAO->state_province_id);
}
elseif ( is_object($relDAO) && $relationField == 'country' ) {
$fieldValue = CRM_Core_PseudoConstant::country($relDAO->country_id);
}
else {
$fieldValue = '';
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment