← All changes
|
includes/elementor/modules/checkout/fields/checkbox.php
+1
-1
1.7.9
→
2.7.0
View file →
| @@ -62,9 +62,9 @@ | ||
| 62 | 62 | <span class="woocommerce-input-wrapper checkbox_wrapper"> |
| 63 | 63 | <?php |
| 64 | 64 | $checked = ( 'true' === $args['checked'] ) ? 'checked="checked"' : ''; |
| 65 | 65 | ?> |
| 66 | - <input id="<?php echo esc_attr( $key ); ?>" style="width:fit-content" name="<?php esc_attr( $key ); ?>" class="checkbox_margin" type="checkbox" <?php echo $checked; ?> > | |
| 66 | + <input id="<?php echo esc_attr( $key ); ?>" style="width:fit-content" name="<?php esc_attr( $key ); ?>" class="checkbox_margin" type="checkbox" <?php echo esc_attr( $checked ); ?> > | |
| 67 | 67 | <label for="<?php echo esc_attr( $key ); ?>" class="checkbox_label"><?php echo esc_html( $args['label'] ); ?></label> |
| 68 | 68 | </span> |
| 69 | 69 | </p> |
| 70 | 70 | <?php |