Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/wp-includes/html-api/class-wp-html-processor.php
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,11 @@ class WP_HTML_Processor extends WP_HTML_Tag_Processor {
* so this class constant from the Tag Processor is overwritten.
*
* @since 6.4.0
* @since 7.0.0 Increased from 100 to 10,000
*
* @var int
*/
const MAX_BOOKMARKS = 100;
const MAX_BOOKMARKS = 10_000;

/**
* Holds the working state of the parser, including the stack of
Expand Down
Loading