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

Additional change needed to get Country column exported for merge into household.

parent df5ec56e
Branches
Tags
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