Skip to content

Commit 8c3fe3a

Browse files
committed
Use prefix increment consistent with the rest of the method
1 parent 8da0bd1 commit 8c3fe3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wp-includes/html-api/class-wp-html-tag-processor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1433,7 +1433,7 @@ private function skip_script_data(): bool {
14331433

14341434
// Everything of interest past here starts with "<".
14351435
if ( $at + 1 >= $doc_length || '<' !== $html[ $at + 1 ] ) {
1436-
$at += 1;
1436+
++$at;
14371437
continue;
14381438
}
14391439

0 commit comments

Comments
 (0)