Skip to content

Commit

Permalink
Merge pull request #9677 from yashodha/CRM-19863
Browse files Browse the repository at this point in the history
CRM-19863 - 'item_name' unnecessarily truncated when passed to PayPal
  • Loading branch information
Yashodha Chaku authored Jan 13, 2017
2 parents eaf9432 + 683538c commit 9b2082e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Core/Payment/PayPalImpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ public function doTransferCheckout(&$params, $component = 'contribute') {
$paypalParams = array(
'business' => $this->_paymentProcessor['user_name'],
'notify_url' => $notifyURL,
'item_name' => $this->getPaymentDescription($params),
'item_name' => $this->getPaymentDescription($params, 127),
'quantity' => 1,
'undefined_quantity' => 0,
'cancel_return' => $cancelURL,
Expand Down

0 comments on commit 9b2082e

Please sign in to comment.