File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
app/code/Magento/Shipping/view/frontend/templates/tracking Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ $parentBlock = $block->getParentBlock();
12
12
$ track = $ block ->getData ('track ' );
13
13
?>
14
14
<div class="table-wrapper">
15
- <table class="data table order tracking" id="track-history-table-<?= $ escaper ->escapeHtml ($ track ->getTracking ()) ?> ">
15
+ <table class="data table order tracking"
16
+ id="track-history-table-<?= $ escaper ->escapeHtml ($ track ->getTracking ()) ?> ">
16
17
<caption class="table-caption"><?= $ escaper ->escapeHtml (__ ('Track history ' )) ?> </caption>
17
18
<thead>
18
19
<tr>
@@ -23,7 +24,7 @@ $track = $block->getData('track');
23
24
</tr>
24
25
</thead>
25
26
<tbody>
26
- <?php foreach ($ track ->getProgressdetail () as $ detail ) : ?>
27
+ <?php foreach ($ track ->getProgressdetail () as $ detail ): ?>
27
28
<?php $ detailDate = (!empty ($ detail ['deliverydate ' ])?
28
29
$ parentBlock ->formatDeliveryDate ($ detail ['deliverydate ' ]) :
29
30
'' ); ?>
@@ -32,7 +33,8 @@ $track = $block->getData('track');
32
33
'' ); ?>
33
34
<tr>
34
35
<td data-th="<?= $ escaper ->escapeHtml (__ ('Location ' )) ?> " class="col location">
35
- <?= (!empty ($ detail ['deliverylocation ' ]) ? $ escaper ->escapeHtml ($ detail ['deliverylocation ' ]) : '' ) ?>
36
+ <?= (!empty ($ detail ['deliverylocation ' ]) ?
37
+ $ escaper ->escapeHtml ($ detail ['deliverylocation ' ]) : '' ) ?>
36
38
</td>
37
39
<td data-th="<?= $ escaper ->escapeHtml (__ ('Date ' )) ?> " class="col date">
38
40
<?= /* @noEscape */ $ detailDate ?>
You can’t perform that action at this time.
0 commit comments