From d57577d4017d983e64d62caba719aac2e8e8ef9d Mon Sep 17 00:00:00 2001 From: Eileen Date: Thu, 14 Nov 2013 14:27:56 +1300 Subject: [PATCH] CRM-13757 Paypal Pro IPN - fix type on recurring_payment_id ---------------------------------------- * CRM-13757: Paypal pro ipn - 'recurring_payment_id' incorrectly typed as an integer http://issues.civicrm.org/jira/browse/CRM-13757 --- CRM/Core/Payment/PayPalProIPN.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/Payment/PayPalProIPN.php b/CRM/Core/Payment/PayPalProIPN.php index 86cee3efef..64c3e78fd3 100644 --- a/CRM/Core/Payment/PayPalProIPN.php +++ b/CRM/Core/Payment/PayPalProIPN.php @@ -207,7 +207,7 @@ class CRM_Core_Payment_PayPalProIPN extends CRM_Core_Payment_BaseIPN { case 'recurring_payment_profile_created': $recur->create_date = $now; $recur->contribution_status_id = 2; - $recur->processor_id = $this->retrieve('recurring_payment_id', 'Integer'); + $recur->processor_id = $this->retrieve('recurring_payment_id', 'String'); $recur->trxn_id = $recur->processor_id; $subscriptionPaymentStatus = CRM_Core_Payment::RECURRING_PAYMENT_START; $sendNotification = TRUE; -- 2.25.1