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 | * @var string |
| | 22 | */ |
| 18 | 23 | public $type = 'header'; |
| | 24 | |
| | 25 | /** |
| | 26 | * Uploaded header images. |
| | 27 | * |
| | 28 | * @var array |
| | 29 | */ |
| 19 | 30 | public $uploaded_headers; |
| | 31 | |
| | 32 | /** |
| | 33 | * Default header images. |
| | 34 | * |
| | 35 | * @var array |
| | 36 | */ |
| 20 | 37 | public $default_headers; |
| 21 | 38 | |
| 22 | 39 | /** |