From f2d315036b0d4bba651852b4d32ffdd58e97b2f1 Mon Sep 17 00:00:00 2001 From: Bernhard Reiter Date: Thu, 4 May 2023 08:42:22 +0000 Subject: [PATCH] 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 --- wp-includes/html-api/class-wp-html-tag-processor.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/html-api/class-wp-html-tag-processor.php b/wp-includes/html-api/class-wp-html-tag-processor.php index 2ac8f469cf..9547aebd79 100644 --- a/wp-includes/html-api/class-wp-html-tag-processor.php +++ b/wp-includes/html-api/class-wp-html-tag-processor.php @@ -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 ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 3e50eb6f93..bc65594410 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.