Skip to content

Commit

Permalink
Fix function unnecessarily called multiple time
Browse files Browse the repository at this point in the history
  • Loading branch information
Saurabh Parekh authored and gelanivishal committed Jul 13, 2018
1 parent 1de3379 commit 7a6217c
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@
*/
?>

<?php $block->getCurrencySymbolsData();?>

<form id="currency-symbols-form" action="<?php /* @escapeNotVerified */ echo $block->getFormActionUrl() ?>" method="post">
<input name="form_key" type="hidden" value="<?php /* @escapeNotVerified */ echo $block->getFormKey() ?>" />
<form id="currency-symbols-form" action="<?= /* @escapeNotVerified */ $block->getFormActionUrl() ?>" method="post">
<input name="form_key" type="hidden" value="<?= /* @escapeNotVerified */ $block->getFormKey() ?>" />
<fieldset class="admin__fieldset">
<?php foreach ($block->getCurrencySymbolsData() as $code => $data): ?>
<div class="admin__field _required">
Expand Down

0 comments on commit 7a6217c

Please sign in to comment.