Skip to content

Commit 28b49f8

Browse files
committed
MAGETWO-98902: Incorrect currency symbol code formatting
1 parent ab908b6 commit 28b49f8

File tree

1 file changed

+2
-2
lines changed
  • app/code/Magento/CurrencySymbol/view/adminhtml/templates

1 file changed

+2
-2
lines changed

app/code/Magento/CurrencySymbol/view/adminhtml/templates/grid.phtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
$escapeHelper = $this->helper(\Magento\Framework\EscapeHelper::class);
1515
?>
16-
<form id="currency-symbols-form" action="<? echo $escapeHelper->escapeHtmlAttr($block->getFormActionUrl()) ?>" method="post">
17-
<input name="form_key" type="hidden" value="<? echo $escapeHelper->escapeHtmlAttr($block->getFormKey()) ?>" />
16+
<form id="currency-symbols-form" action="<?php echo $escapeHelper->escapeHtmlAttr($block->getFormActionUrl()) ?>" method="post">
17+
<input name="form_key" type="hidden" value="<?php echo $escapeHelper->escapeHtmlAttr($block->getFormKey()) ?>" />
1818
<fieldset class="admin__fieldset">
1919
<?php foreach ($block->getCurrencySymbolsData() as $code => $data): ?>
2020
<div class="admin__field _required">

0 commit comments

Comments
 (0)