We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f92f20 commit 155eb2cCopy full SHA for 155eb2c
lib/internal/Magento/Framework/View/Model/Layout/Merge.php
@@ -1,7 +1,7 @@
1
<?php
2
/**
3
- * Copyright © Magento, Inc. All rights reserved.
4
- * See COPYING.txt for license details.
+ * Copyright 2011 Adobe
+ * All Rights Reserved.
5
*/
6
namespace Magento\Framework\View\Model\Layout;
7
@@ -572,7 +572,11 @@ protected function _loadXmlString($xmlString)
572
573
protected function _safeLoadXmlString($xmlString)
574
{
575
- return simplexml_load_string($xmlString, \Magento\Framework\View\Layout\Element::class, LIBXML_NOWARNING | LIBXML_NOERROR);
+ return simplexml_load_string(
576
+ $xmlString,
577
+ \Magento\Framework\View\Layout\Element::class,
578
+ LIBXML_NOWARNING | LIBXML_NOERROR
579
+ );
580
}
581
582
0 commit comments