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

patched fix for CRM-13770

----------------------------------------
* CRM-13770: Recurring Paypal Contributions for merged contacts are being recorded against the wrong contact
  http://issues.civicrm.org/jira/browse/CRM-13770
parent e6b6dd0a
No related branches found
No related tags found
No related merge requests found
......@@ -270,7 +270,7 @@ class CRM_Core_Payment_PayPalProIPN extends CRM_Core_Payment_BaseIPN {
return TRUE;
}
$contribution->contact_id = $ids['contact'];
$contribution->contact_id = $recur->contact_id;
$contribution->financial_type_id = $objects['contributionType']->id;
$contribution->contribution_page_id = $ids['contributionPage'];
$contribution->contribution_recur_id = $ids['contributionRecur'];
......
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