Skip to content

Commit

Permalink
Merge pull request #18882 from eileenmcnaughton/pps
Browse files Browse the repository at this point in the history
[Ref] Use direct version of participant id
  • Loading branch information
mattwire authored Nov 1, 2020
2 parents b681360 + 0d74d91 commit c9f4ab4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Core/Payment/PayPalIPN.php
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ public function main() {
}
$this->single($input, [
'related_contact' => $ids['related_contact'] ?? NULL,
'participant' => !empty($objects['participant']) ? $objects['participant']->id : NULL,
'participant' => $ids['participant'] ?? NULL,
'contributionRecur' => !empty($objects['contributionRecur']) ? $objects['contributionRecur']->id : NULL,
], $objects['contribution']);
}
Expand Down

0 comments on commit c9f4ab4

Please sign in to comment.