Skip to content

Commit

Permalink
Fixed issue of Shipping issue on PayPal Express magento#14712
Browse files Browse the repository at this point in the history
  • Loading branch information
nirav-kadiya committed Dec 8, 2018
1 parent 8a059e6 commit 8bdcca9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public function fetch(\Magento\Quote\Model\Quote $quote, \Magento\Quote\Model\Qu
{
$amount = $total->getShippingAmount();
$shippingDescription = $total->getShippingDescription();
$title = ($amount != 0 && $shippingDescription)
$title = ($shippingDescription)
? __('Shipping & Handling (%1)', $shippingDescription)
: __('Shipping & Handling');

Expand Down

0 comments on commit 8bdcca9

Please sign in to comment.