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
This commit is contained in:
Sergey Biryukov 2023-12-25 14:03:19 +00:00
parent 356dd51612
commit 13f7ee3063
2 changed files with 2 additions and 2 deletions

View File

@ -1895,7 +1895,7 @@ class WP_HTML_Tag_Processor {
* 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

View File

@ -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.