[Ref] Use variables directly
authoreileen <emcnaughton@wikimedia.org>
Fri, 6 Nov 2020 00:06:44 +0000 (13:06 +1300)
committereileen <emcnaughton@wikimedia.org>
Fri, 6 Nov 2020 00:06:44 +0000 (13:06 +1300)
CRM/Core/Payment/PayPalProIPN.php

index 61c86b269e6649fb51c1187edf6cd530266b0445..d6f44109d6465a076c35b57ccf61c4745c31d49e 100644 (file)
@@ -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);
   }