File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
app/code/Magento/Tax/view/frontend/templates/checkout Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 10
10
* @var $block \Magento\Tax\Block\Checkout\Grandtotal
11
11
*/
12
12
?>
13
+ <?php
14
+ $ style = $ block ->escapeHtmlAttr ($ block ->getStyle ());
15
+ $ colspan = (int )$ block ->getColspan ();
16
+ ?>
13
17
<?php if ($ block ->includeTax () && $ block ->getTotalExclTax () >= 0 ) : ?>
14
- <?php
15
- $ style = $ block ->escapeHtmlAttr ($ block ->getStyle ());
16
- $ colspan = (int )$ block ->getColspan ();
17
- ?>
18
18
<tr class="grand totals excl">
19
19
<th style="<?= /* @noEscape */ $ style ?> " class="mark" colspan="<?= /* @noEscape */ $ colspan ?> " scope="row">
20
20
<strong><?= $ block ->escapeHtml (__ ('Grand Total Excl. Tax ' )) ?> </strong>
Original file line number Diff line number Diff line change 11
11
* @see \Magento\Tax\Block\Checkout\Subtotal
12
12
*/
13
13
?>
14
+ <?php
15
+ $ style = $ block ->escapeHtmlAttr ($ block ->getStyle ());
16
+ $ colspan = (int )$ block ->getColspan ();
17
+ ?>
14
18
<?php if ($ block ->displayBoth ()) : ?>
15
- <?php
16
- $ style = $ block ->escapeHtmlAttr ($ block ->getStyle ());
17
- $ colspan = (int )$ block ->getColspan ();
18
- ?>
19
19
<tr class="totals sub excl">
20
20
<th style="<?= /* @noEscape */ $ style ?> " class="mark" colspan="<?= /* @noEscape */ $ colspan ?> " scope="row">
21
21
<?= $ block ->escapeHtml (__ ('Subtotal (Excl. Tax) ' )) ?>
You can’t perform that action at this time.
0 commit comments