diff --git wp-admin/includes/widgets.php wp-admin/includes/widgets.php
index c869449..b335f35 100644
|
|
|
function wp_list_widget_controls_dynamic_sidebar( $params ) { |
| 123 | 123 | return $params; |
| 124 | 124 | } |
| 125 | 125 | |
| | 126 | /** |
| | 127 | * Looks at the list of registered widgets with the widget id containing $id_base. |
| | 128 | * Returns the number of widgets registered to the widget_id + 1. |
| | 129 | * |
| | 130 | * @param string $id_base Base id of widget |
| | 131 | * @return integer |
| | 132 | **/ |
| 126 | 133 | function next_widget_id_number($id_base) { |
| 127 | 134 | global $wp_registered_widgets; |
| 128 | 135 | $number = 1; |