HTML API: Adjust coding style to pass Gutenberg linter.
This patch adjusts some minor neutral whitespace that the Gutenberg linting rejects. There are no code changes otherwise. Props dmsnell. Fixes #58250. Built from https://develop.svn.wordpress.org/trunk@55721 git-svn-id: http://core.svn.wordpress.org/trunk@55233 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7e9421e4d0
commit
f2d315036b
|
@ -1465,9 +1465,9 @@ class WP_HTML_Tag_Processor {
|
|||
$accumulated_shift_for_given_point += $shift;
|
||||
}
|
||||
|
||||
$output_buffer .= substr( $this->html, $bytes_already_copied, $diff->start - $bytes_already_copied );
|
||||
$output_buffer .= $diff->text;
|
||||
$bytes_already_copied = $diff->end;
|
||||
$output_buffer .= substr( $this->html, $bytes_already_copied, $diff->start - $bytes_already_copied );
|
||||
$output_buffer .= $diff->text;
|
||||
$bytes_already_copied = $diff->end;
|
||||
}
|
||||
|
||||
$this->html = $output_buffer . substr( $this->html, $bytes_already_copied );
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.3-alpha-55720';
|
||||
$wp_version = '6.3-alpha-55721';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue