Skip to content
Snippets Groups Projects
Unverified Commit b1cfb56f authored by Seamus Lee's avatar Seamus Lee Committed by GitHub
Browse files

Merge pull request #19033 from eileenmcnaughton/obj2

financial#148 fold call to loadObjects
parents dc1f9a0f b5f812f7
No related branches found
No related tags found
No related merge requests found
......@@ -359,10 +359,15 @@ class CRM_Core_Payment_PayPalIPN extends CRM_Core_Payment_BaseIPN {
// CRM_Contribute_BAO_Contribution::loadRelatedObjects(..) using $objects['contribution']->contribution_page_id
unset($ids['contributionPage']);
}
if (!$this->loadObjects($input, $ids, $objects, TRUE, $paymentProcessorID)) {
return FALSE;
$contribution = &$objects['contribution'];
$ids['paymentProcessor'] = $paymentProcessorID;
if (!$contribution->loadRelatedObjects($input, $ids)) {
return;
}
if (empty($contribution->_relatedObjects['paymentProcessor'])) {
throw new CRM_Core_Exception("Could not find payment processor for contribution record: " . $contribution->id);
}
$objects = array_merge($objects, $contribution->_relatedObjects);
$input['payment_processor_id'] = $paymentProcessorID;
......
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