File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
app/code/Magento/Checkout/view/frontend/templates/cart/item/configure Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 15
15
<fieldset class="fieldset">
16
16
<?php if ($ block ->shouldRenderQuantity ()): ?>
17
17
<div class="field qty">
18
- <label class="label" for="qty"><span><?php /* @escapeNotVerified */ echo __ ('Qty ' ) ?> </span></label>
18
+ <label class="label" for="qty"><span><?php echo $ block -> escapeHtml ( __ ('Qty ' )); ?> </span></label>
19
19
<div class="control">
20
- <input type="number" name="qty" id="qty" maxlength="12" value="" title="<?php /* @escapeNotVerified */ echo __ ('Qty ' ) ?> " class="input-text qty" data-validate="{'required-number':true,digits:true}"/>
20
+ <input type="number" name="qty" id="qty" maxlength="12" value=""
21
+ title="<?php echo $ block ->escapeHtml (__ ('Qty ' )); ?> "
22
+ class="input-text qty" data-validate="{'required-number':true,digits:true}"/>
21
23
</div>
22
24
</div>
23
25
<?php endif ; ?>
24
26
<div class="actions">
25
27
<button type="submit"
26
- title="<?php /* @escapeNotVerified */ echo $ buttonTitle ?> "
28
+ title="<?php echo $ block -> escapeHtml ( $ buttonTitle); ?> "
27
29
class="action primary tocart"
28
30
id="product-updatecart-button">
29
- <span><?php /* @escapeNotVerified */ echo $ buttonTitle ?> </span>
31
+ <span><?php echo $ block -> escapeHtml ( $ buttonTitle); ?> </span>
30
32
</button>
31
33
<?php echo $ block ->getChildHtml ('' , true ) ?>
32
34
</div>
You can’t perform that action at this time.
0 commit comments