- Timestamp:
- 08/30/2023 03:37:33 PM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/html-api/class-wp-html-processor.php
r56380 r56493 433 433 */ 434 434 public function step( $node_to_process = self::PROCESS_NEXT_NODE ) { 435 // Refuse to proceed if there was a previous error. 436 if ( null !== $this->last_error ) { 437 return false; 438 } 439 435 440 if ( self::PROCESS_NEXT_NODE === $node_to_process ) { 436 441 $top_node = $this->state->stack_of_open_elements->current_node(); … … 745 750 */ 746 751 public function get_tag() { 752 if ( null !== $this->last_error ) { 753 return null; 754 } 755 747 756 $tag_name = parent::get_tag(); 748 757
Note: See TracChangeset
for help on using the changeset viewer.