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

Merge pull request #19035 from eileenmcnaughton/obj4

financial#148 fold call to loadObjects - a.net 
parents 2e193eb7 3868d6af
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,13 @@ class CRM_Core_Payment_AuthorizeNetIPN extends CRM_Core_Payment_BaseIPN {
$objects['contact'] = &$contact;
$objects['contribution'] = &$contribution;
$this->loadObjects($input, $ids, $objects, TRUE, $paymentProcessorID);
$contribution = &$objects['contribution'];
$ids['paymentProcessor'] = $paymentProcessorID;
$contribution->loadRelatedObjects($input, $ids);
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);
// check if first contribution is completed, else complete first contribution
$first = TRUE;
......
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