We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5df8df commit f5ca994Copy full SHA for f5ca994
1 file changed
src/wp-includes/html-api/class-wp-html-tag-processor.php
@@ -1432,7 +1432,8 @@ private function skip_script_data(): bool {
1432
}
1433
1434
// Everything of interest past here starts with "<".
1435
- if ( $at + 1 >= $doc_length || '<' !== $html[ $at++ ] ) {
+ if ( $at + 1 >= $doc_length || '<' !== $html[ $at + 1 ] ) {
1436
+ $at += 1;
1437
continue;
1438
1439
0 commit comments