From 6bd8c8776b3b5b5513c76b5fd8c8a8324f1f2af6 Mon Sep 17 00:00:00 2001 From: Dave Greenberg Date: Wed, 11 Nov 2015 16:27:19 -0800 Subject: [PATCH] CRM-17550 - Missing payment description in PayPalImpl. ---------------------------------------- * CRM-17550: PayPal Website Standard : payment description is not being passed to PayPal https://issues.civicrm.org/jira/browse/CRM-17550 --- 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 ef1e963199..24f572ac7c 100644 --- a/CRM/Core/Payment/PayPalImpl.php +++ b/CRM/Core/Payment/PayPalImpl.php @@ -837,7 +837,7 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment { $paypalParams = array( 'business' => $this->_paymentProcessor['user_name'], 'notify_url' => $notifyURL, - 'item_name' => $this->getPaymentDescription(), + 'item_name' => $this->getPaymentDescription($params), 'quantity' => 1, 'undefined_quantity' => 0, 'cancel_return' => $cancelURL, -- 2.25.1