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();
1212$ track = $ block ->getData ('track ' );
1313?>
1414<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 ()) ?> ">
1617 <caption class="table-caption"><?= $ escaper ->escapeHtml (__ ('Track history ' )) ?> </caption>
1718 <thead>
1819 <tr>
@@ -23,7 +24,7 @@ $track = $block->getData('track');
2324 </tr>
2425 </thead>
2526 <tbody>
26- <?php foreach ($ track ->getProgressdetail () as $ detail ) : ?>
27+ <?php foreach ($ track ->getProgressdetail () as $ detail ): ?>
2728 <?php $ detailDate = (!empty ($ detail ['deliverydate ' ])?
2829 $ parentBlock ->formatDeliveryDate ($ detail ['deliverydate ' ]) :
2930 '' ); ?>
@@ -32,7 +33,8 @@ $track = $block->getData('track');
3233 '' ); ?>
3334 <tr>
3435 <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 ' ]) : '' ) ?>
3638 </td>
3739 <td data-th="<?= $ escaper ->escapeHtml (__ ('Date ' )) ?> " class="col date">
3840 <?= /* @noEscape */ $ detailDate ?>
You can’t perform that action at this time.
0 commit comments