Changeset 36148 for branches/4.4/tests/phpunit/tests/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/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.