Changeset 36148
- Timestamp:
- 01/02/2016 03:38:45 AM (7 years ago)
- Location:
- branches/4.4
- Files:
-
- 3 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; -
branches/4.4/tests/phpunit/tests/widgets.php
r35272 r36148 534 534 $option_value = get_option( $wp_widget_search->option_name ); 535 535 $this->assertArrayNotHasKey( 2, $option_value ); 536 }537 538 /**539 * @ticket 23423540 */541 function test_dynamic_sidebar_id_special_characters() {542 wp_widgets_init();543 register_sidebar( array(544 'name' => 'Sidebar 2',545 'id' => 'sidebar-2',546 ) );547 548 ob_start();549 $result = dynamic_sidebar( 'Sidebar 1' );550 ob_end_clean();551 552 $this->assertFalse( $result );553 536 } 554 537
Note: See TracChangeset
for help on using the changeset viewer.