Changeset 36148 for branches/4.4/src/wp-includes/widgets.php
- Timestamp:
- 01/02/2016 03:38:45 AM (8 years ago)
- Location:
- branches/4.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.4
-
branches/4.4/src/wp-includes/widgets.php
r35725 r36148 608 608 $index = "sidebar-$index"; 609 609 } else { 610 $ sanitized_index = sanitize_title( $index );610 $index = sanitize_title( $index ); 611 611 foreach ( (array) $wp_registered_sidebars as $key => $value ) { 612 if ( sanitize_title( $value['name'] ) == $ sanitized_index ) {612 if ( sanitize_title( $value['name'] ) == $index ) { 613 613 $index = $key; 614 614 break;
Note: See TracChangeset
for help on using the changeset viewer.