From 13f7ee3063375ca44f9653e478ca8ccdaf429e96 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 25 Dec 2023 14:03:19 +0000 Subject: [PATCH] Coding Standards: Correct alignment in `WP_HTML_Tag_Processor::apply_attributes_updates()`. This fixes an `Equals sign not aligned correctly` WPCS warning. Follow-up to [57179]. Props antonvlasenko, dmsnell, ironprogrammer. Fixes #60078. Built from https://develop.svn.wordpress.org/trunk@57227 git-svn-id: http://core.svn.wordpress.org/trunk@56733 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/html-api/class-wp-html-tag-processor.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 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 7b17276f9287..ee6209c69e0a 100644 --- a/wp-includes/html-api/class-wp-html-tag-processor.php +++ b/wp-includes/html-api/class-wp-html-tag-processor.php @@ -1895,7 +1895,7 @@ private function apply_attributes_updates( $shift_this_point = 0 ) { * replacements adjust offsets in the input document. */ foreach ( $this->bookmarks as $bookmark_name => $bookmark ) { - $bookmark_end = $bookmark->start + $bookmark->length; + $bookmark_end = $bookmark->start + $bookmark->length; /* * Each lexical update which appears before the bookmark's endpoints diff --git a/wp-includes/version.php b/wp-includes/version.php index a96d03bf6453..96effe5d8314 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5-alpha-57226'; +$wp_version = '6.5-alpha-57227'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.