File tree Expand file tree Collapse file tree 11 files changed +25
-11
lines changed
Bundle/view/frontend/templates/sales/order/creditmemo/items
Catalog/view/frontend/templates/product/view
Checkout/view/frontend/templates
onepage/review/item/price
Theme/view/frontend/templates/html Expand file tree Collapse file tree 11 files changed +25
-11
lines changed Original file line number Diff line number Diff line change 6767 </td>
6868 <td class="col discount" data-th="<?= $ block ->escapeHtml (__ ('Discount Amount ' )) ?> ">
6969 <?php if ($ block ->canShowPriceInfo ($ _item )) : ?>
70- <?= $ block ->escapeHtml ($ block ->getOrder ()->formatPrice (-$ _item ->getDiscountAmount ())) ?>
70+ <?= $ block ->escapeHtml ($ block ->getOrder ()->formatPrice (-$ _item ->getDiscountAmount ()), [ ' span ' ] ) ?>
7171 <?php else : ?>
7272
7373 <?php endif ; ?>
Original file line number Diff line number Diff line change 2626 data-toggle="trigger"
2727 href="#<?= $ block ->escapeUrl ($ alias ) ?> "
2828 id="tab-label-<?= $ block ->escapeHtmlAttr ($ alias ) ?> -title">
29- <?= $ block -> escapeHtml ( $ label) ?>
29+ <?= /* @noEscape */ $ label ?>
3030 </a>
3131 </div>
3232 <div class="data item content"
Original file line number Diff line number Diff line change 1313 <span class="price-label"><?= $ block ->escapeHtml (__ ('Price ' )) ?> </span>
1414 <span class="price-wrapper">
1515 <?= $ block ->escapeHtml (
16- $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getCalculationPrice ())
16+ $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getCalculationPrice ()),
17+ ['span ' ]
1718 ) ?>
1819 </span>
1920</div>
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ $_item = $block->getItem();
1313<span class="price-excluding-tax" data-label="<?= $ block ->escapeHtml (__ ('Excl. Tax ' )) ?> ">
1414 <span class="cart-price">
1515 <?= $ block ->escapeHtml (
16- $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getRowTotal ())
16+ $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getRowTotal ()),
17+ ['span ' ]
1718 ) ?>
1819 </span>
1920</span>
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ $_item = $block->getItem();
1313<span class="price-including-tax" data-label="<?= $ block ->escapeHtml (__ ('Excl. Tax ' )) ?> ">
1414 <span class="cart-price">
1515 <?= $ block ->escapeHtml (
16- $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getCalculationPrice ())
16+ $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getCalculationPrice ()),
17+ ['span ' ]
1718 ) ?>
1819 </span>
1920</span>
Original file line number Diff line number Diff line change 1111$ _item = $ block ->getItem ();
1212?>
1313<span class="cart-price">
14- <?= $ block ->escapeHtml ($ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getRowTotal ())) ?>
14+ <?= $ block ->escapeHtml (
15+ $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getRowTotal ()),
16+ ['span ' ]
17+ ) ?>
1518</span>
Original file line number Diff line number Diff line change @@ -12,5 +12,8 @@ $_item = $block->getItem();
1212?>
1313<?php $ _incl = $ this ->helper (Magento \Checkout \Helper \Data::class)->getSubtotalInclTax ($ _item ); ?>
1414<span class="cart-price">
15- <?= $ block ->escapeHtml ($ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _incl )) ?>
15+ <?= $ block ->escapeHtml (
16+ $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _incl ),
17+ ['span ' ]
18+ ) ?>
1619</span>
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ $_item = $block->getItem();
1212?>
1313<span class="cart-price">
1414 <?= $ block ->escapeHtml (
15- $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getCalculationPrice ())
15+ $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _item ->getCalculationPrice ()),
16+ ['span ' ]
1617 ) ?>
1718</span>
Original file line number Diff line number Diff line change @@ -12,5 +12,8 @@ $_item = $block->getItem();
1212?>
1313<?php $ _incl = $ this ->helper (Magento \Checkout \Helper \Data::class)->getPriceInclTax ($ _item ); ?>
1414<span class="cart-price">
15- <?= $ block ->escapeHtml ($ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _incl )) ?>
15+ <?= $ block ->escapeHtml (
16+ $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ _incl ),
17+ ['span ' ]
18+ ) ?>
1619</span>
Original file line number Diff line number Diff line change 3232 <?php endif ; ?>
3333 <span>
3434 <?= $ block ->escapeHtml (
35- $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ block ->getTotal ()->getValue ())
35+ $ this ->helper (Magento \Checkout \Helper \Data::class)->formatPrice ($ block ->getTotal ()->getValue ()),
36+ ['span ' ]
3637 ) ?>
3738 </span>
3839 <?php if ($ block ->getRenderingArea () == $ block ->getTotal ()->getArea ()) :?>
You can’t perform that action at this time.
0 commit comments