From c13e236a4b76d5c236ad10ce6e7e05a273bf0726 Mon Sep 17 00:00:00 2001 From: Bernhard Reiter Date: Thu, 15 Jun 2023 15:50:23 +0000 Subject: [PATCH] HTML API: Update code style so it passes when backported into Gutenberg. This changes the indentation of a variable in class-wp-html-tag-processor.php to satisfy both WordPress and Gutenberg linters. Props dmsnell, zieladam, ntsekouras. Merges [55674] to the 6.2 branch. Fixes #58530. Built from https://develop.svn.wordpress.org/branches/6.2@55925 git-svn-id: http://core.svn.wordpress.org/branches/6.2@55437 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 5eee939c9c..7edb67f9f0 100644 --- a/wp-includes/html-api/class-wp-html-tag-processor.php +++ b/wp-includes/html-api/class-wp-html-tag-processor.php @@ -1894,7 +1894,7 @@ class WP_HTML_Tag_Processor { * * Result:
*/ - $existing_attribute = $this->attributes[ $comparable_name ]; + $existing_attribute = $this->attributes[ $comparable_name ]; $this->lexical_updates[ $comparable_name ] = new WP_HTML_Text_Replacement( $existing_attribute->start, $existing_attribute->end, diff --git a/wp-includes/version.php b/wp-includes/version.php index 4c6f69464c..6e98fab148 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2.3-alpha-55842'; +$wp_version = '6.2.3-alpha-55925'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.