Changeset 57369 for trunk/src/wp-includes/class-wp-customize-control.php
- Timestamp:
- 01/28/2024 07:48:15 AM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-control.php
r56547 r57369 554 554 <?php 555 555 foreach ( $this->choices as $value => $label ) { 556 echo '<option value="' . esc_attr( $value ) . '"' . selected( $this->value(), $value, false ) . '>' . $label. '</option>';556 echo '<option value="' . esc_attr( $value ) . '"' . selected( $this->value(), $value, false ) . '>' . esc_html( $label ) . '</option>'; 557 557 } 558 558 ?>
Note: See TracChangeset
for help on using the changeset viewer.