diff --git a/wp-admin/includes/class-custom-image-header.php b/wp-admin/includes/class-custom-image-header.php
index c8809ade2f..12ac1ef9e2 100644
|
a
|
b
|
class Custom_Image_Header {
|
| 332 | 332 | if ( ! empty( $header['attachment_id'] ) ) { |
| 333 | 333 | $width = ' width="230"'; |
| 334 | 334 | } |
| 335 | | echo '<img src="' . set_url_scheme( $header_thumbnail ) . '" alt="' . esc_attr( $header_alt_text ) . '"' . $width . ' /></label>'; |
| | 335 | echo '<img src="' . esc_url( set_url_scheme( $header_thumbnail ) ) . '" alt="' . esc_attr( $header_alt_text ) . '"' . $width . ' /></label>'; |
| 336 | 336 | echo '</div>'; |
| 337 | 337 | } |
| 338 | 338 | |