###########################################
## disable POST processing to not break multiple image upload
diff --git a/.php_cs b/.php_cs
index c7f43f02f4fc5..4bd705bb09a2f 100644
--- a/.php_cs
+++ b/.php_cs
@@ -1,6 +1,6 @@
Apache
- PHP 5.6.x, 7.0.2 or 7.0.6 |
+ PHP 5.6.x, 7.0.2, 7.0.4 or 7.0.6 |
php -v |
PHP Ubuntu PHP CentOS |
diff --git a/app/autoload.php b/app/autoload.php
index b817bafa7fa4c..6fdfcd07fdff1 100644
--- a/app/autoload.php
+++ b/app/autoload.php
@@ -2,7 +2,7 @@
/**
* Register basic autoloader that uses include path
*
- * Copyright © 2016 Magento. All rights reserved.
+ * Copyright © 2013-2017 Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
use Magento\Framework\Autoload\AutoloaderRegistry;
diff --git a/app/bootstrap.php b/app/bootstrap.php
index 5e693487d748d..eb91654f1fcf4 100644
--- a/app/bootstrap.php
+++ b/app/bootstrap.php
@@ -1,6 +1,6 @@
= 50600 && PHP_VERSION_ID < 50700 || PHP_VERSION_ID === 70002 || PHP_VERSION_ID >= 70006)) {
+if (!defined('PHP_VERSION_ID') || !(PHP_VERSION_ID >= 50005 && PHP_VERSION_ID < 50700 || PHP_VERSION_ID === 70002 || PHP_VERSION_ID === 70004 || PHP_VERSION_ID >= 70006)) {
if (PHP_SAPI == 'cli') {
- echo 'Magento supports PHP 5.6, 7.0.2, and 7.0.6 or later. ' .
+ echo 'Magento supports PHP 5.6.5, 7.0.2, 7.0.4 and 7.0.6 or later. ' .
'Please read http://devdocs.magento.com/guides/v1.0/install-gde/system-requirements.html';
} else {
echo <<
- Magento supports PHP 5.6, 7.0.2, and 7.0.6 or later. Please read
+
Magento supports PHP 5.6.5, 7.0.2, 7.0.4 and 7.0.6 or later. Please read
Magento System Requirements.
@@ -35,6 +35,17 @@
$mask = file_exists($umaskFile) ? octdec(file_get_contents($umaskFile)) : 002;
umask($mask);
+if (empty($_SERVER['ENABLE_IIS_REWRITES']) || ($_SERVER['ENABLE_IIS_REWRITES'] != 1)) {
+ /*
+ * Unset headers used by IIS URL rewrites.
+ */
+ unset($_SERVER['HTTP_X_REWRITE_URL']);
+ unset($_SERVER['HTTP_X_ORIGINAL_URL']);
+ unset($_SERVER['IIS_WasUrlRewritten']);
+ unset($_SERVER['UNENCODED_URL']);
+ unset($_SERVER['ORIG_PATH_INFO']);
+}
+
if (!empty($_SERVER['MAGE_PROFILER'])
&& isset($_SERVER['HTTP_ACCEPT'])
&& strpos($_SERVER['HTTP_ACCEPT'], 'text/html') !== false
diff --git a/app/code/Magento/AdminNotification/Block/Grid/Renderer/Actions.php b/app/code/Magento/AdminNotification/Block/Grid/Renderer/Actions.php
index a76f43970ac02..4edf285b3daaa 100644
--- a/app/code/Magento/AdminNotification/Block/Grid/Renderer/Actions.php
+++ b/app/code/Magento/AdminNotification/Block/Grid/Renderer/Actions.php
@@ -2,7 +2,7 @@
/**
* Adminhtml AdminNotification Severity Renderer
*
- * Copyright © 2016 Magento. All rights reserved.
+ * Copyright © 2013-2017 Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
diff --git a/app/code/Magento/AdminNotification/Block/Grid/Renderer/Notice.php b/app/code/Magento/AdminNotification/Block/Grid/Renderer/Notice.php
index ea065ca1839b2..025bfc18cdc53 100644
--- a/app/code/Magento/AdminNotification/Block/Grid/Renderer/Notice.php
+++ b/app/code/Magento/AdminNotification/Block/Grid/Renderer/Notice.php
@@ -2,7 +2,7 @@
/**
* Adminhtml AdminNotification Severity Renderer
*
- * Copyright © 2016 Magento. All rights reserved.
+ * Copyright © 2013-2017 Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\AdminNotification\Block\Grid\Renderer;
diff --git a/app/code/Magento/AdminNotification/Block/Grid/Renderer/Severity.php b/app/code/Magento/AdminNotification/Block/Grid/Renderer/Severity.php
index 7d0ccd163b8e0..c348b6cc76101 100644
--- a/app/code/Magento/AdminNotification/Block/Grid/Renderer/Severity.php
+++ b/app/code/Magento/AdminNotification/Block/Grid/Renderer/Severity.php
@@ -2,7 +2,7 @@
/**
* Adminhtml AdminNotification Severity Renderer
*
- * Copyright © 2016 Magento. All rights reserved.
+ * Copyright © 2013-2017 Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\AdminNotification\Block\Grid\Renderer;
diff --git a/app/code/Magento/AdminNotification/Block/Inbox.php b/app/code/Magento/AdminNotification/Block/Inbox.php
index 899d141c9b07f..984de28fd4b94 100644
--- a/app/code/Magento/AdminNotification/Block/Inbox.php
+++ b/app/code/Magento/AdminNotification/Block/Inbox.php
@@ -2,7 +2,7 @@
/**
* Adminhtml AdminNotification inbox grid
*
- * Copyright © 2016 Magento. All rights reserved.
+ * Copyright © 2013-2017 Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\AdminNotification\Block;
diff --git a/app/code/Magento/AdminNotification/Block/System/Messages.php b/app/code/Magento/AdminNotification/Block/System/Messages.php
index 223941c6e43f7..db2ecf62f0685 100644
--- a/app/code/Magento/AdminNotification/Block/System/Messages.php
+++ b/app/code/Magento/AdminNotification/Block/System/Messages.php
@@ -1,6 +1,6 @@
diff --git a/app/code/Magento/AdminNotification/etc/adminhtml/di.xml b/app/code/Magento/AdminNotification/etc/adminhtml/di.xml
index 8986ce73472e5..1be5f99616cc3 100644
--- a/app/code/Magento/AdminNotification/etc/adminhtml/di.xml
+++ b/app/code/Magento/AdminNotification/etc/adminhtml/di.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/AdminNotification/etc/adminhtml/events.xml b/app/code/Magento/AdminNotification/etc/adminhtml/events.xml
index 07bd1ae5e8e92..9c897af0a2f94 100644
--- a/app/code/Magento/AdminNotification/etc/adminhtml/events.xml
+++ b/app/code/Magento/AdminNotification/etc/adminhtml/events.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/AdminNotification/etc/adminhtml/menu.xml b/app/code/Magento/AdminNotification/etc/adminhtml/menu.xml
index f64dcbdb51cfd..47c6644b9f369 100644
--- a/app/code/Magento/AdminNotification/etc/adminhtml/menu.xml
+++ b/app/code/Magento/AdminNotification/etc/adminhtml/menu.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/AdminNotification/etc/adminhtml/routes.xml b/app/code/Magento/AdminNotification/etc/adminhtml/routes.xml
index 9ca1f2d4cd1ae..a710049993270 100644
--- a/app/code/Magento/AdminNotification/etc/adminhtml/routes.xml
+++ b/app/code/Magento/AdminNotification/etc/adminhtml/routes.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/AdminNotification/etc/adminhtml/system.xml b/app/code/Magento/AdminNotification/etc/adminhtml/system.xml
index 8038b914fd65b..ab0cff5f897c1 100644
--- a/app/code/Magento/AdminNotification/etc/adminhtml/system.xml
+++ b/app/code/Magento/AdminNotification/etc/adminhtml/system.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/AdminNotification/etc/config.xml b/app/code/Magento/AdminNotification/etc/config.xml
index f1a1abb44546b..c088f7b5e11a7 100644
--- a/app/code/Magento/AdminNotification/etc/config.xml
+++ b/app/code/Magento/AdminNotification/etc/config.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/AdminNotification/etc/di.xml b/app/code/Magento/AdminNotification/etc/di.xml
index a5f94685ed9d1..03e415dd3714e 100644
--- a/app/code/Magento/AdminNotification/etc/di.xml
+++ b/app/code/Magento/AdminNotification/etc/di.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/AdminNotification/etc/module.xml b/app/code/Magento/AdminNotification/etc/module.xml
index 77d9d4877ac0b..8fdfc713293d3 100644
--- a/app/code/Magento/AdminNotification/etc/module.xml
+++ b/app/code/Magento/AdminNotification/etc/module.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/AdminNotification/registration.php b/app/code/Magento/AdminNotification/registration.php
index ab3e6a6170db0..9bd6a540462f7 100644
--- a/app/code/Magento/AdminNotification/registration.php
+++ b/app/code/Magento/AdminNotification/registration.php
@@ -1,6 +1,6 @@
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_index.xml b/app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_index.xml
index 1d3650fa2afcb..1083e32f3c942 100644
--- a/app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_index.xml
+++ b/app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_index.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml b/app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml
index a7183277e514b..836399135228a 100644
--- a/app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml
+++ b/app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/requirejs-config.js b/app/code/Magento/AdminNotification/view/adminhtml/requirejs-config.js
index 69739a39dd4e3..c866e796e0ade 100644
--- a/app/code/Magento/AdminNotification/view/adminhtml/requirejs-config.js
+++ b/app/code/Magento/AdminNotification/view/adminhtml/requirejs-config.js
@@ -1,5 +1,5 @@
/**
- * Copyright © 2016 Magento. All rights reserved.
+ * Copyright © 2013-2017 Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
@@ -10,4 +10,4 @@ var config = {
toolbarEntry: 'Magento_AdminNotification/toolbar_entry'
}
}
-};
\ No newline at end of file
+};
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/templates/notification/window.phtml b/app/code/Magento/AdminNotification/view/adminhtml/templates/notification/window.phtml
index 260c7f9be9684..5e0e23246764a 100644
--- a/app/code/Magento/AdminNotification/view/adminhtml/templates/notification/window.phtml
+++ b/app/code/Magento/AdminNotification/view/adminhtml/templates/notification/window.phtml
@@ -1,6 +1,6 @@
getNoticeMessageText(); ?>
getReadDetailsText(); ?>
-
\ No newline at end of file
+
diff --git a/app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages.phtml b/app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages.phtml
index cd4a9a88ebe0c..a70a5e97b57c3 100644
--- a/app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages.phtml
+++ b/app/code/Magento/AdminNotification/view/adminhtml/templates/system/messages.phtml
@@ -1,6 +1,6 @@
@@ -11,4 +11,4 @@
-
\ No newline at end of file
+
diff --git a/app/code/Magento/AdvancedPricingImportExport/etc/di.xml b/app/code/Magento/AdvancedPricingImportExport/etc/di.xml
index c3444069c14c0..15e505282dd94 100644
--- a/app/code/Magento/AdvancedPricingImportExport/etc/di.xml
+++ b/app/code/Magento/AdvancedPricingImportExport/etc/di.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/AdvancedPricingImportExport/etc/export.xml b/app/code/Magento/AdvancedPricingImportExport/etc/export.xml
index f04e399fdfedb..da176e7bd73e1 100644
--- a/app/code/Magento/AdvancedPricingImportExport/etc/export.xml
+++ b/app/code/Magento/AdvancedPricingImportExport/etc/export.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/AdvancedPricingImportExport/etc/import.xml b/app/code/Magento/AdvancedPricingImportExport/etc/import.xml
index 711a7bf270ce6..80c8873aad387 100644
--- a/app/code/Magento/AdvancedPricingImportExport/etc/import.xml
+++ b/app/code/Magento/AdvancedPricingImportExport/etc/import.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/AdvancedPricingImportExport/etc/module.xml b/app/code/Magento/AdvancedPricingImportExport/etc/module.xml
index 4ae0d6516e66f..f9ad9f34b2ad6 100644
--- a/app/code/Magento/AdvancedPricingImportExport/etc/module.xml
+++ b/app/code/Magento/AdvancedPricingImportExport/etc/module.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/AdvancedPricingImportExport/registration.php b/app/code/Magento/AdvancedPricingImportExport/registration.php
index 86dcff3d60a68..a9477f3a9a1fb 100644
--- a/app/code/Magento/AdvancedPricingImportExport/registration.php
+++ b/app/code/Magento/AdvancedPricingImportExport/registration.php
@@ -1,6 +1,6 @@
diff --git a/app/code/Magento/Authorization/etc/module.xml b/app/code/Magento/Authorization/etc/module.xml
index f3fa8793f3e57..f27253870499d 100644
--- a/app/code/Magento/Authorization/etc/module.xml
+++ b/app/code/Magento/Authorization/etc/module.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/Authorization/registration.php b/app/code/Magento/Authorization/registration.php
index 6aabf5a16bb91..f35b17a4d6710 100644
--- a/app/code/Magento/Authorization/registration.php
+++ b/app/code/Magento/Authorization/registration.php
@@ -1,6 +1,6 @@
directpostFactory = $directpostFactory ?: $this->_objectManager->create(DirectpostFactory::class);
+ $this->logger = $logger ?: $this->_objectManager->get(LoggerInterface::class);
+ }
+
/**
* Response action.
* Action for Authorize.net SIM Relay Request.
@@ -16,6 +56,21 @@ class BackendResponse extends \Magento\Authorizenet\Controller\Directpost\Paymen
*/
public function execute()
{
+ $data = $this->getRequest()->getParams();
+ /** @var Directpost $paymentMethod */
+ $paymentMethod = $this->directpostFactory->create();
+ if (!empty($data['store_id'])) {
+ $paymentMethod->setStore($data['store_id']);
+ }
+ $paymentMethod->setResponseData($data);
+ try {
+ $paymentMethod->validateResponse();
+ } catch (LocalizedException $e) {
+ $this->logger->critical($e->getMessage());
+ $this->_redirect('noroute');
+ return;
+ }
$this->_responseAction('adminhtml');
+ $this->resultFactory->create(ResultFactory::TYPE_PAGE);
}
}
diff --git a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Place.php b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Place.php
index 0ffe6df37b1f0..9cbfda3a37dff 100644
--- a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Place.php
+++ b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Place.php
@@ -1,6 +1,6 @@
setData('error', true);
- $result->setData('error_messages', __('Unable to place order. Please try again later.'));
+ $result->setData(
+ 'error_messages',
+ __('An error occurred on the server. Please try to place the order again.')
+ );
}
if ($response instanceof Http) {
$response->representJson($this->jsonHelper->jsonEncode($result));
diff --git a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Redirect.php b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Redirect.php
index 8745737a19bd6..84d91dc89f155 100644
--- a/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Redirect.php
+++ b/app/code/Magento/Authorizenet/Controller/Directpost/Payment/Redirect.php
@@ -1,7 +1,7 @@
setData('error', true);
- $objectFailed->setData('error_messages', __('Unable to place order. Please try again later.'));
+ $objectFailed->setData(
+ 'error_messages',
+ __('An error occurred on the server. Please try to place the order again.')
+ );
return [
[
diff --git a/app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/RedirectTest.php b/app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/RedirectTest.php
index d11a7b8df3521..4ec5e401c9e96 100644
--- a/app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/RedirectTest.php
+++ b/app/code/Magento/Authorizenet/Test/Unit/Controller/Directpost/Payment/RedirectTest.php
@@ -1,6 +1,6 @@
diff --git a/app/code/Magento/Authorizenet/etc/adminhtml/events.xml b/app/code/Magento/Authorizenet/etc/adminhtml/events.xml
index 4a669cd7d9cac..8114b8c8312cc 100644
--- a/app/code/Magento/Authorizenet/etc/adminhtml/events.xml
+++ b/app/code/Magento/Authorizenet/etc/adminhtml/events.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/Authorizenet/etc/adminhtml/routes.xml b/app/code/Magento/Authorizenet/etc/adminhtml/routes.xml
index ef3e63f2c9c90..028e1a8500d07 100644
--- a/app/code/Magento/Authorizenet/etc/adminhtml/routes.xml
+++ b/app/code/Magento/Authorizenet/etc/adminhtml/routes.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/Authorizenet/etc/adminhtml/system.xml b/app/code/Magento/Authorizenet/etc/adminhtml/system.xml
index fd2fb84f0a290..3d4cde185dcd1 100644
--- a/app/code/Magento/Authorizenet/etc/adminhtml/system.xml
+++ b/app/code/Magento/Authorizenet/etc/adminhtml/system.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/Authorizenet/etc/config.xml b/app/code/Magento/Authorizenet/etc/config.xml
index 70b413b5c1a39..f5b053003f1f2 100644
--- a/app/code/Magento/Authorizenet/etc/config.xml
+++ b/app/code/Magento/Authorizenet/etc/config.xml
@@ -1,7 +1,7 @@
@@ -10,7 +10,7 @@
0
- AE,VI,MC,DI
+ AE,VI,MC,DI,JCB,DN
0
0
diff --git a/app/code/Magento/Authorizenet/etc/di.xml b/app/code/Magento/Authorizenet/etc/di.xml
index f5e595fb450e8..3bd70f25a3bf9 100644
--- a/app/code/Magento/Authorizenet/etc/di.xml
+++ b/app/code/Magento/Authorizenet/etc/di.xml
@@ -1,7 +1,7 @@
@@ -16,4 +16,14 @@
Magento\Authorizenet\Model\Directpost\Session\Storage
+
+
+
+ - 1
+ - 1
+ - 1
+ - 1
+
+
+
diff --git a/app/code/Magento/Authorizenet/etc/frontend/di.xml b/app/code/Magento/Authorizenet/etc/frontend/di.xml
index 7f20e067cc426..8dcf8ed700dcb 100644
--- a/app/code/Magento/Authorizenet/etc/frontend/di.xml
+++ b/app/code/Magento/Authorizenet/etc/frontend/di.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/Authorizenet/etc/frontend/events.xml b/app/code/Magento/Authorizenet/etc/frontend/events.xml
index bb11f4bca363a..2c6e3f12a9196 100644
--- a/app/code/Magento/Authorizenet/etc/frontend/events.xml
+++ b/app/code/Magento/Authorizenet/etc/frontend/events.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/Authorizenet/etc/frontend/page_types.xml b/app/code/Magento/Authorizenet/etc/frontend/page_types.xml
index 6dc50d5d28dd9..be4692b135955 100644
--- a/app/code/Magento/Authorizenet/etc/frontend/page_types.xml
+++ b/app/code/Magento/Authorizenet/etc/frontend/page_types.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/Authorizenet/etc/frontend/routes.xml b/app/code/Magento/Authorizenet/etc/frontend/routes.xml
index 7da347a2e6381..1bdcff9f1efe1 100644
--- a/app/code/Magento/Authorizenet/etc/frontend/routes.xml
+++ b/app/code/Magento/Authorizenet/etc/frontend/routes.xml
@@ -1,7 +1,7 @@
@@ -11,4 +11,4 @@
-
\ No newline at end of file
+
diff --git a/app/code/Magento/Authorizenet/etc/frontend/sections.xml b/app/code/Magento/Authorizenet/etc/frontend/sections.xml
index 33c48e60e8dab..977a4b14e3e14 100644
--- a/app/code/Magento/Authorizenet/etc/frontend/sections.xml
+++ b/app/code/Magento/Authorizenet/etc/frontend/sections.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/Authorizenet/etc/module.xml b/app/code/Magento/Authorizenet/etc/module.xml
index 75317e254efaa..91d93e56e0cad 100644
--- a/app/code/Magento/Authorizenet/etc/module.xml
+++ b/app/code/Magento/Authorizenet/etc/module.xml
@@ -1,7 +1,7 @@
diff --git a/app/code/Magento/Authorizenet/i18n/en_US.csv b/app/code/Magento/Authorizenet/i18n/en_US.csv
index bb958d64bc841..7183c706dc0a2 100644
--- a/app/code/Magento/Authorizenet/i18n/en_US.csv
+++ b/app/code/Magento/Authorizenet/i18n/en_US.csv
@@ -2,7 +2,7 @@
"Order saving error: %1","Order saving error: %1"
"Please choose a payment method.","Please choose a payment method."
"We can\'t process your order right now. Please try again later.","We can\'t process your order right now. Please try again later."
-"Unable to place order. Please try again later.","Unable to place order. Please try again later."
+"An error occurred on the server. Please try to place the order again.","An error occurred on the server. Please try to place the order again."
"Credit Card: xxxx-%1","Credit Card: xxxx-%1"
"amount %1","amount %1"
failed.,failed.
diff --git a/app/code/Magento/Authorizenet/registration.php b/app/code/Magento/Authorizenet/registration.php
index a0eab4323313e..ad98beafa744d 100644
--- a/app/code/Magento/Authorizenet/registration.php
+++ b/app/code/Magento/Authorizenet/registration.php
@@ -1,6 +1,6 @@
diff --git a/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_index.xml b/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_index.xml
index aeed400c3c8fa..851cbf398750d 100644
--- a/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_index.xml
+++ b/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_index.xml
@@ -1,7 +1,7 @@
@@ -14,4 +14,4 @@
-
\ No newline at end of file
+
diff --git a/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml b/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml
index 21e8f1d70fbb5..ec5ce845b8521 100644
--- a/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml
+++ b/app/code/Magento/Authorizenet/view/adminhtml/layout/sales_order_create_load_block_billing_method.xml
@@ -1,7 +1,7 @@
@@ -14,4 +14,4 @@