Changeset 58702
- Timestamp:
- 07/09/2024 09:43:11 PM (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/html-api/class-wp-html-processor.php
r58681 r58702 2772 2772 while ( 2773 2773 ( $no_exclusions || ! $this->state->stack_of_open_elements->current_node_is( $except_for_this_element ) ) && 2774 in_array( $this->state->stack_of_open_elements->current_node() , $elements_with_implied_end_tags, true )2774 in_array( $this->state->stack_of_open_elements->current_node()->node_name, $elements_with_implied_end_tags, true ) 2775 2775 ) { 2776 2776 $this->state->stack_of_open_elements->pop(); … … 2812 2812 ); 2813 2813 2814 while ( in_array( $this->state->stack_of_open_elements->current_node() , $elements_with_implied_end_tags, true ) ) {2814 while ( in_array( $this->state->stack_of_open_elements->current_node()->node_name, $elements_with_implied_end_tags, true ) ) { 2815 2815 $this->state->stack_of_open_elements->pop(); 2816 2816 }
Note: See TracChangeset
for help on using the changeset viewer.