diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index f481c7ddf..5fc2da2a7 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -1,6 +1,7 @@ 7.9.11 - fixed #11755: New cart does not update shipping methods correctly - fixed #11757: Update the USPS International driver for new country names + - fixed #11753: PayPal Plugin - Shipping not factored into total in paypal 7.9.10 - fixed #11721: spamStopWords not in WebGUI.conf.original diff --git a/lib/WebGUI/Shop/PayDriver/PayPal/PayPalStd.pm b/lib/WebGUI/Shop/PayDriver/PayPal/PayPalStd.pm index cbf143cdb..68e1fb1d3 100644 --- a/lib/WebGUI/Shop/PayDriver/PayPal/PayPalStd.pm +++ b/lib/WebGUI/Shop/PayDriver/PayPal/PayPalStd.pm @@ -228,7 +228,7 @@ sub paymentVariables { return => $return->as_string, cancel_return => $cancel->as_string, - shipping => $cart->calculateShipping, + handling_cart => $cart->calculateShipping, ##According to https://www.x.com/message/180018#180018 tax_cart => $cart->calculateTaxes, discount_amount_cart => -($cart->calculateShopCreditDeduction),