projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d6ec153
)
[Ref] Use variables directly
author
eileen
<emcnaughton@wikimedia.org>
Fri, 6 Nov 2020 00:06:44 +0000
(13:06 +1300)
committer
eileen
<emcnaughton@wikimedia.org>
Fri, 6 Nov 2020 00:06:44 +0000
(13:06 +1300)
CRM/Core/Payment/PayPalProIPN.php
patch
|
blob
|
blame
|
history
diff --git
a/CRM/Core/Payment/PayPalProIPN.php
b/CRM/Core/Payment/PayPalProIPN.php
index 61c86b269e6649fb51c1187edf6cd530266b0445..d6f44109d6465a076c35b57ccf61c4745c31d49e 100644
(file)
--- a/
CRM/Core/Payment/PayPalProIPN.php
+++ b/
CRM/Core/Payment/PayPalProIPN.php
@@
-280,8
+280,8
@@
class CRM_Core_Payment_PayPalProIPN extends CRM_Core_Payment_BaseIPN {
$this->single($input, [
'related_contact' => $ids['related_contact'] ?? NULL,
- 'participant' =>
!empty($objects['participant']) ? $objects['participant']->id :
NULL,
- 'contributionRecur' =>
!empty($objects['contributionRecur']) ? $objects['contributionRecur']->id :
NULL,
+ 'participant' =>
$ids['participant'] ??
NULL,
+ 'contributionRecur' =>
$recur->id ??
NULL,
], $objects, TRUE, $first);
}