Skip to content

Commit d200ae8

Browse files
author
Joan He
authored
Merge pull request #4456 from magento-arcticfoxes/MC-17854
[arcticfoxes] Bug Fixes
2 parents 83f5867 + 6f45b19 commit d200ae8

File tree

1 file changed

+2
-2
lines changed
  • app/code/Magento/Multishipping/view/frontend/templates/checkout/item

1 file changed

+2
-2
lines changed

app/code/Magento/Multishipping/view/frontend/templates/checkout/item/default.phtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
<?php $_formatedOptionValue = $block->getFormatedOptionValue($_option) ?>
1414
<dt><?= $block->escapeHtml($_option['label']) ?></dt>
1515
<dd<?= (isset($_formatedOptionValue['full_view']) ? ' class="tooltip wrapper"' : '') ?>>
16-
<?= $block->escapeHtml($_formatedOptionValue['value']) ?>
16+
<?= $block->escapeHtml($_formatedOptionValue['value'], ['span']) ?>
1717
<?php if (isset($_formatedOptionValue['full_view'])) : ?>
1818
<dl class="item options tooltip content">
1919
<dt><?= $block->escapeHtml($_option['label']) ?></dt>
20-
<dd><?= $block->escapeHtml($_formatedOptionValue['full_view']) ?></dd>
20+
<dd><?= $block->escapeHtml($_formatedOptionValue['full_view'], ['span']) ?></dd>
2121
</dl>
2222
<?php endif; ?>
2323
</dd>

0 commit comments

Comments
 (0)