We will be off from 27/1 (Monday) to 31/1 (Friday) (GMT +7) for our Tet Holiday (Lunar New Year) in our country

Commit 1cff4df9 authored by Rik ter Beek's avatar Rik ter Beek Committed by GitHub

Merge pull request #497 from Adyen/bug/fix-3ds1-magento-2.3.2

Add XMLHttpRequest into header line to fix issues on magento 2.3.2 & fix overlay for 3DS2
parents 578230a5 0b62f11d
...@@ -117,6 +117,7 @@ class Redirect extends \Magento\Framework\App\Action\Action ...@@ -117,6 +117,7 @@ class Redirect extends \Magento\Framework\App\Action\Action
$request = $this->getRequest(); $request = $this->getRequest();
if ($request instanceof Http && $request->isPost()) { if ($request instanceof Http && $request->isPost()) {
$request->setParam('isAjax', true); $request->setParam('isAjax', true);
$request->getHeaders()->addHeaderLine('X_REQUESTED_WITH', 'XMLHttpRequest');
} }
} }
} }
......
...@@ -1223,7 +1223,7 @@ ...@@ -1223,7 +1223,7 @@
.threeDS2Modal #threeDS2Container { .threeDS2Modal #threeDS2Container {
height: 100vh; margin-bottom: 5rem;
} }
.adyen-checkout__threeds2, .adyen-checkout__threeds2__challenge { .adyen-checkout__threeds2, .adyen-checkout__threeds2__challenge {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment