diff --git a/src/wp-includes/class-wp-customize-control.php b/src/wp-includes/class-wp-customize-control.php
index 30e8c2c639..055f6cf670 100644
a
|
b
|
class WP_Customize_Control { |
553 | 553 | <select id="<?php echo esc_attr( $input_id ); ?>" <?php echo $describedby_attr; ?> <?php $this->link(); ?>> |
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 | ?> |
559 | 559 | </select> |