Skip to content
Snippets Groups Projects
Commit 3868d6af authored by eileen's avatar eileen
Browse files

financial#148 fold call to loadObjects

parent cb6b0ed9
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