From 9db13a40f8238702019aeb1866b46a2652fe56ae Mon Sep 17 00:00:00 2001 From: Jamie McClelland Date: Wed, 19 Mar 2014 16:48:11 -0400 Subject: [PATCH] CRM-12679 - use properly FinancialType DAO call for 4.4 ---------------------------------------- * CRM-12679: Paypal Express Recurring IPN not working? http://issues.civicrm.org/jira/browse/CRM-12679 --- 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 ac7038067a..e63376d904 100644 --- a/CRM/Core/Payment/PayPalProIPN.php +++ b/CRM/Core/Payment/PayPalProIPN.php @@ -530,7 +530,7 @@ INNER JOIN civicrm_membership_payment mp ON m.id = mp.membership_id AND mp.contr // membership would be an easy add - but not relevant to my customer... $this->_component = $input['component'] = 'contribute'; $input['trxn_date'] = date('Y-m-d-H-i-s', strtotime(self::retrieve('time_created', 'String'))); - $paymentProcessorID = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_PaymentProcessorType', + $paymentProcessorID = CRM_Core_DAO::getFieldValue('CRM_Financial_DAO_PaymentProcessorType', 'PayPal', 'id', 'name' ); -- 2.25.1