diff --git src/wp-includes/customize/class-wp-customize-header-image-control.php b/class-wp-customize-header-image-control.php
index 68262dd..1764b8c 100755
old
|
new
|
|
15 | 15 | * @see WP_Customize_Image_Control |
16 | 16 | */ |
17 | 17 | class WP_Customize_Header_Image_Control extends WP_Customize_Image_Control { |
| 18 | /** |
| 19 | * Customize control type. |
| 20 | * |
| 21 | * @since 4.9.7 |
| 22 | * @var string |
| 23 | */ |
18 | 24 | public $type = 'header'; |
| 25 | |
| 26 | /** |
| 27 | * Uploaded header images. |
| 28 | * |
| 29 | * @since 4.9.7 |
| 30 | * @var array |
| 31 | */ |
19 | 32 | public $uploaded_headers; |
| 33 | |
| 34 | /** |
| 35 | * Default header images. |
| 36 | * |
| 37 | * @since 4.9.7 |
| 38 | * @var array |
| 39 | */ |
20 | 40 | public $default_headers; |
21 | 41 | |
22 | 42 | /** |