From: Dave Greenberg Date: Thu, 12 Nov 2015 00:27:19 +0000 (-0800) Subject: CRM-17550 - Missing payment description in PayPalImpl. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=6bd8c8776b3b5b5513c76b5fd8c8a8324f1f2af6;p=civicrm-core.git 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 --- 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,