Skip to content

Commit

Permalink
Merge forwardport of #11710 to 2.3-develop branch
Browse files Browse the repository at this point in the history
Applied pull request patch https://github.com/magento/magento2/pull/11710.patch (created by @gabrielqs-redstage) based on commit(s):
  1. fb84267

Fixed GitHub Issues in 2.3-develop branch:
  - #9763: When go checkout,Cart Price Rules 25%test coupon code can go wrong (reported by @michaeldyl520)
  • Loading branch information
magento-engcom-team authored Jan 23, 2018
2 parents 153aa0c + 93cba75 commit fe598ef
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ define([
quoteId: quoteId
} : {},
urls = {
'guest': '/guest-carts/' + quoteId + '/coupons/' + couponCode,
'customer': '/carts/mine/coupons/' + couponCode
'guest': '/guest-carts/' + quoteId + '/coupons/' + encodeURIComponent(couponCode),
'customer': '/carts/mine/coupons/' + encodeURIComponent(couponCode)
};

return this.getUrl(urls, params);
Expand Down

0 comments on commit fe598ef

Please sign in to comment.