diff --git src/wp-includes/customize/class-wp-customize-upload-control.php b/class-wp-customize-upload-control.php
index 46e2b98..f9cb437 100755
old
|
new
|
|
15 | 15 | * @see WP_Customize_Media_Control |
16 | 16 | */ |
17 | 17 | class WP_Customize_Upload_Control extends WP_Customize_Media_Control { |
18 | | public $type = 'upload'; |
19 | | public $mime_type = ''; |
| 18 | /** |
| 19 | * Control type. |
| 20 | * |
| 21 | * @since 4.2.0 |
| 22 | * @var string |
| 23 | */ |
| 24 | public $type = 'upload'; |
| 25 | |
| 26 | /** |
| 27 | * Media control mime type. |
| 28 | * |
| 29 | * @since 4.2.0 |
| 30 | * @var string |
| 31 | */ |
| 32 | public $mime_type = ''; |
| 33 | |
| 34 | /** |
| 35 | * Button labels. |
| 36 | * |
| 37 | * @since 4.2.0 |
| 38 | * @var array |
| 39 | */ |
20 | 40 | public $button_labels = array(); |
21 | | public $removed = ''; // unused |
| 41 | |
| 42 | public $removed = ''; // unused |
22 | 43 | public $context; // unused |
23 | 44 | public $extensions = array(); // unused |
24 | 45 | |