diff --git src/wp-includes/customize/class-wp-widget-form-customize-control-new.php b/class-wp-widget-form-customize-control-new.php
index 01acdd6..260b417 100755
|
old
|
new
|
|
| 15 | 15 | * @see WP_Customize_Control |
| 16 | 16 | */ |
| 17 | 17 | class WP_Widget_Form_Customize_Control extends WP_Customize_Control { |
| | 18 | /** |
| | 19 | * Customize control type. |
| | 20 | * |
| | 21 | * @since 3.9.0 |
| | 22 | * @var string |
| | 23 | */ |
| 18 | 24 | public $type = 'widget_form'; |
| | 25 | |
| | 26 | /** |
| | 27 | * Widget ID. |
| | 28 | * |
| | 29 | * @since 3.9.0 |
| | 30 | * @var string |
| | 31 | */ |
| 19 | 32 | public $widget_id; |
| | 33 | |
| | 34 | /** |
| | 35 | * Widget ID base. |
| | 36 | * |
| | 37 | * @since 3.9.0 |
| | 38 | * @var string |
| | 39 | */ |
| 20 | 40 | public $widget_id_base; |
| | 41 | |
| | 42 | /** |
| | 43 | * Sidebar ID. |
| | 44 | * |
| | 45 | * @since 3.9.0 |
| | 46 | * @var string |
| | 47 | */ |
| 21 | 48 | public $sidebar_id; |
| | 49 | |
| | 50 | /** |
| | 51 | * Widget status. |
| | 52 | * |
| | 53 | * @since 3.9.0 |
| | 54 | * @var bool True if new, false otherwise. Default false. |
| | 55 | */ |
| 22 | 56 | public $is_new = false; |
| | 57 | |
| | 58 | /** |
| | 59 | * Widget width. |
| | 60 | * |
| | 61 | * @since 3.9.0 |
| | 62 | * @var int |
| | 63 | */ |
| 23 | 64 | public $width; |
| | 65 | |
| | 66 | /** |
| | 67 | * Widget height. |
| | 68 | * |
| | 69 | * @since 3.9.0 |
| | 70 | * @var int |
| | 71 | */ |
| 24 | 72 | public $height; |
| | 73 | |
| | 74 | /** |
| | 75 | * Widget mode. |
| | 76 | * |
| | 77 | * @since 3.9.0 |
| | 78 | * @var bool True if wide, false otherwise. Default false. |
| | 79 | */ |
| 25 | 80 | public $is_wide = false; |
| 26 | 81 | |
| 27 | 82 | /** |