Changeset 56274
- Timestamp:
- 07/20/2023 01:41:21 PM (18 months ago)
- Location:
- trunk
- Files:
-
- 9 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/html-api/class-wp-html-tag-processor.php
r56133 r56274 523 523 * @type string|null $tag_closers "visit" or "skip": whether to stop on tag closers, e.g. </div>. 524 524 * } 525 * @return bool eanWhether a tag was matched.525 * @return bool Whether a tag was matched. 526 526 */ 527 527 public function next_tag( $query = null ) { … … 674 674 } 675 675 676 if ( ! array_key_exists( $name, $this->bookmarks ) && count( $this->bookmarks ) >= s elf::MAX_BOOKMARKS ) {676 if ( ! array_key_exists( $name, $this->bookmarks ) && count( $this->bookmarks ) >= static::MAX_BOOKMARKS ) { 677 677 _doing_it_wrong( 678 678 __METHOD__, … … 1539 1539 } 1540 1540 1541 if ( ++$this->seek_count > s elf::MAX_SEEK_OPS ) {1541 if ( ++$this->seek_count > static::MAX_SEEK_OPS ) { 1542 1542 _doing_it_wrong( 1543 1543 __METHOD__, … … 2222 2222 * @since 6.2.0 2223 2223 * 2224 * @return bool eanWhether the given tag and its attribute match the search criteria.2224 * @return bool Whether the given tag and its attribute match the search criteria. 2225 2225 */ 2226 2226 private function matches() { -
trunk/src/wp-settings.php
r56241 r56274 240 240 require ABSPATH . WPINC . '/html-api/class-wp-html-text-replacement.php'; 241 241 require ABSPATH . WPINC . '/html-api/class-wp-html-tag-processor.php'; 242 require ABSPATH . WPINC . '/html-api/class-wp-html-unsupported-exception.php'; 243 require ABSPATH . WPINC . '/html-api/class-wp-html-active-formatting-elements.php'; 244 require ABSPATH . WPINC . '/html-api/class-wp-html-open-elements.php'; 245 require ABSPATH . WPINC . '/html-api/class-wp-html-token.php'; 246 require ABSPATH . WPINC . '/html-api/class-wp-html-processor-state.php'; 247 require ABSPATH . WPINC . '/html-api/class-wp-html-processor.php'; 242 248 require ABSPATH . WPINC . '/class-wp-http.php'; 243 249 require ABSPATH . WPINC . '/class-wp-http-streams.php';
Note: See TracChangeset
for help on using the changeset viewer.