From fe5dc7f5ddcd2030843ba1f666d2185653ebef1c Mon Sep 17 00:00:00 2001 From: "Yushkin, Dmytro" <dyushkin@ebay.com> Date: Wed, 21 Oct 2015 19:53:01 +0300 Subject: [PATCH] MAGETWO-44413: Unable to place order using transparent payment method if it is the only one enabled --- .../Payment/view/frontend/templates/transparent/iframe.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/Magento/Payment/view/frontend/templates/transparent/iframe.phtml b/app/code/Magento/Payment/view/frontend/templates/transparent/iframe.phtml index b191981585a..fc9624bde10 100644 --- a/app/code/Magento/Payment/view/frontend/templates/transparent/iframe.phtml +++ b/app/code/Magento/Payment/view/frontend/templates/transparent/iframe.phtml @@ -33,7 +33,7 @@ $params = $block->getParams(); 'Magento_Checkout/js/action/place-order' ], function(quote, placeOrderAction) { - placeOrderAction(quote.paymentMethod(), true); + placeOrderAction({"method": quote.paymentMethod().method}, true); } ); <?php endif; ?> -- GitLab