mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-31 06:00:31 +00:00
HTML API: Reset parser state after seeking to bookmark.
When parser states were introduced, nothing in the `seek()` method reset the parser state. This is problematic because it could leave the parser in the wrong state. In this patch the parser state is reset so that it's properly adjusted on the successive call to `next_token()`. Developed in https://github.com/WordPress/wordpress-develop/pull/6021 Discussed in https://core.trac.wordpress.org/ticket/60428 Follow-up to [57211] Props dmsnell, kevin940726 Fixes #60428 git-svn-id: https://develop.svn.wordpress.org/trunk@57527 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -2335,6 +2335,7 @@ class WP_HTML_Tag_Processor {
|
||||
|
||||
// Point this tag processor before the sought tag opener and consume it.
|
||||
$this->bytes_already_parsed = $this->bookmarks[ $bookmark_name ]->start;
|
||||
$this->parser_state = self::STATE_READY;
|
||||
return $this->next_token();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user