Skip to content

Commit b277249

Browse files
authored
Merge pull request #37 from magento-commerce/develop
Merge develop into 1.0
2 parents 62f8e1f + 4c9ea73 commit b277249

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"symfony/proxy-manager-bridge": "^3.3||^4.3||^5.1",
1717
"symfony/yaml": "^3.3||^4.0||^5.1",
1818
"monolog/monolog": "^1.16",
19-
"magento/quality-patches": "^1.0.7"
19+
"magento/quality-patches": "^1.1.0"
2020
},
2121
"require-dev": {
2222
"codeception/codeception": "^2.5.3",

patches.json

+3
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,9 @@
365365
},
366366
"Re-work consumers to terminate as soon as there is nothing left to process": {
367367
">=2.2.0 <2.3.2": "MAGECLOUD-4071__terminate_consumers_if_the_queue_is_empty__2.2.0.patch"
368+
},
369+
"Fixes issue with PayPal Express where previously placed order price is displayed": {
370+
"2.3.7-p1": "MC-42674__paypal_checkout__2.3.7-p1.patch"
368371
}
369372
}
370373
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
diff --git a/vendor/magento/module-paypal/Controller/Express/AbstractExpress/PlaceOrder.php b/vendor/magento/module-paypal/Controller/Express/AbstractExpress/PlaceOrder.php
2+
index 055af4162d5f3..3f4fafc110ae2 100644
3+
--- a/vendor/magento/module-paypal/Controller/Express/AbstractExpress/PlaceOrder.php
4+
+++ b/vendor/magento/module-paypal/Controller/Express/AbstractExpress/PlaceOrder.php
5+
@@ -99,6 +99,7 @@ public function execute()
6+
7+
// prepare session to success or cancellation page
8+
$this->_getCheckoutSession()->clearHelperData();
9+
+ $this->_getSession()->unsQuoteId();
10+
11+
// "last successful quote"
12+
$quoteId = $this->_getQuote()->getId();

0 commit comments

Comments
 (0)