- Timestamp:
- 02/22/2023 08:53:41 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/html-api/class-wp-html-tag-processor.php
r55402 r55407 723 723 724 724 $this->bookmarks[ $name ] = new WP_HTML_Span( 725 $this->tag_name_starts_at - 1,725 $this->tag_name_starts_at - ( $this->is_closing_tag ? 2 : 1 ), 726 726 $this->tag_ends_at 727 727 ); … … 1505 1505 $this->bytes_already_copied = $this->bytes_already_parsed; 1506 1506 $this->output_buffer = substr( $this->html, 0, $this->bytes_already_copied ); 1507 return $this->next_tag( );1507 return $this->next_tag( array( 'tag_closers' => 'visit' ) ); 1508 1508 } 1509 1509
Note: See TracChangeset
for help on using the changeset viewer.