Skip to content
Snippets Groups Projects
Commit a1562d20 authored by Kurund Jalmi's avatar Kurund Jalmi
Browse files

Merge pull request #1358 from yashodha/4.4.CRM-13092

fixed export for activity source contact ID
parents 46c4ba98 d4a280d8
No related branches found
No related tags found
No related merge requests found
......@@ -790,6 +790,9 @@ INSERT INTO {$componentTable} SELECT distinct gc.contact_id FROM civicrm_group_c
$row[$field] = $dao->contact_id;
// special case for calculated field
}
elseif ($field == 'source_contact_id') {
$row[$field] = $dao->contact_id;
}
elseif ($field == 'pledge_balance_amount') {
$row[$field] = $dao->pledge_amount - $dao->pledge_total_paid;
// special case for calculated field
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment