Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CiviCRM Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Development
CiviCRM Core
Commits
b1cfb56f
Unverified
Commit
b1cfb56f
authored
4 years ago
by
Seamus Lee
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #19033 from eileenmcnaughton/obj2
financial#148
fold call to loadObjects
parents
dc1f9a0f
b5f812f7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CRM/Core/Payment/PayPalIPN.php
+8
-3
8 additions, 3 deletions
CRM/Core/Payment/PayPalIPN.php
with
8 additions
and
3 deletions
CRM/Core/Payment/PayPalIPN.php
+
8
−
3
View file @
b1cfb56f
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment