- Timestamp:
- 08/13/2024 10:12:01 PM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/html-api/class-wp-html-tag-processor.php
r58870 r58893 4010 4010 4011 4011 // Does the tag name match the requested tag name in a case-insensitive manner? 4012 if ( isset( $this->sought_tag_name ) && 0 !== substr_compare( $this->html, $this->sought_tag_name, $this->tag_name_starts_at, $this->tag_name_length, true ) ) { 4012 if ( 4013 isset( $this->sought_tag_name ) && 4014 ( 4015 strlen( $this->sought_tag_name ) !== $this->tag_name_length || 4016 0 !== substr_compare( $this->html, $this->sought_tag_name, $this->tag_name_starts_at, $this->tag_name_length, true ) 4017 ) 4018 ) { 4013 4019 return false; 4014 4020 }
Note: See TracChangeset
for help on using the changeset viewer.