From 2879f566ed481aa7f0a82265fd49c1917a9dce98 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Sat, 18 Jul 2015 21:39:25 +1200 Subject: [PATCH] CRM-16808 fix to preApproval processor_name --- CRM/Core/Payment/PayPalImpl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/Payment/PayPalImpl.php b/CRM/Core/Payment/PayPalImpl.php index 9767a0d126..2246c1f3df 100644 --- a/CRM/Core/Payment/PayPalImpl.php +++ b/CRM/Core/Payment/PayPalImpl.php @@ -88,7 +88,7 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment { * @return bool */ protected function supportsPreApproval() { - if ($this->_processorName == ts('PayPal_Express')) { + if ($this->_processorName == ts('PayPal Express')) { return TRUE; } return FALSE; -- 2.25.1