Use handling_cart instead of shipping for the HTML variable for sending shipping costs to PayPal. Fixes bug #11753.
This commit is contained in:
parent
f4b733c292
commit
6e091aa6b4
2 changed files with 2 additions and 1 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
7.9.11
|
7.9.11
|
||||||
- fixed #11755: New cart does not update shipping methods correctly
|
- fixed #11755: New cart does not update shipping methods correctly
|
||||||
- fixed #11757: Update the USPS International driver for new country names
|
- 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
|
7.9.10
|
||||||
- fixed #11721: spamStopWords not in WebGUI.conf.original
|
- fixed #11721: spamStopWords not in WebGUI.conf.original
|
||||||
|
|
|
||||||
|
|
@ -228,7 +228,7 @@ sub paymentVariables {
|
||||||
return => $return->as_string,
|
return => $return->as_string,
|
||||||
cancel_return => $cancel->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,
|
tax_cart => $cart->calculateTaxes,
|
||||||
discount_amount_cart => -($cart->calculateShopCreditDeduction),
|
discount_amount_cart => -($cart->calculateShopCreditDeduction),
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue