File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
app/code/Magento/Shipping/view/adminhtml/templates/order/packaging Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 16
16
<th class="data-grid-checkbox-cell">
17
17
<label class="data-grid-checkbox-cell-inner">
18
18
<input type="checkbox"
19
- id="select-items-<?php echo $ randomId ; ?> "
19
+ id="select-items-<?php /* @noEscape */ echo $ randomId ; ?> "
20
20
onchange="packaging.checkAllItems(this);"
21
21
class="checkbox admin__control-checkbox"
22
22
title="<?php /* @escapeNotVerified */ echo __ ('Select All ' ) ?> ">
23
- <label for="select-items-<?php echo $ randomId ; ?> "></label>
23
+ <label for="select-items-<?php /* @noEscape */ echo $ randomId ; ?> "></label>
24
24
</label>
25
25
</th>
26
26
<th class="data-grid-th"><?php /* @escapeNotVerified */ echo __ ('Product Name ' ) ?> </th>
46
46
<?php endif ; ?>
47
47
<tr class="data-grid-controls-row data-row <?php echo ($ i ++ % 2 != 0 ) ? '_odd-row ' : '' ; ?> ">
48
48
<td class="data-grid-checkbox-cell">
49
- <?php /* @escapeNotVerified */ $ id = $ item ->getId () ? $ item ->getId () : $ item ->getOrderItemId (); ?>
49
+ <?php $ id = $ item ->getId () ? $ item ->getId () : $ item ->getOrderItemId (); ?>
50
50
<label class="data-grid-checkbox-cell-inner">
51
51
<input type="checkbox"
52
52
name=""
53
- id="select-item-<?php echo $ randomId . '- ' . $ id ; ?> "
53
+ id="select-item-<?php /* @noEscape */ echo $ randomId . '- ' . $ id ; ?> "
54
54
value="<?php /* @escapeNotVerified */ echo $ id ; ?> "
55
55
class="checkbox admin__control-checkbox">
56
- <label for="select-item-<?php echo $ randomId . '- ' . $ id ; ?> "></label>
56
+ <label for="select-item-<?php /* @noEscape */ echo $ randomId . '- ' . $ id ; ?> "></label>
57
57
</label>
58
58
</td>
59
59
<td>
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ $girthEnabled = $block->isDisplayGirthValue() && $block->isGirthAllowed() ? 1 :
52
52
});
53
53
jQuery('#packaging_window').modal({
54
54
type: 'slide',
55
- title: '<?php /* @escapeNotVerified */ echo __ ('Create Packages ' ) ?> ',
55
+ title: '<?php /* @escapeNotVerified */ echo __ ('Create Packages ' ) ?> ',
56
56
buttons: [{
57
57
text: '<?php /* @escapeNotVerified */ echo __ ('Cancel ' ) ?> ',
58
58
'class': 'action-secondary',
You can’t perform that action at this time.
0 commit comments