From e9f335df2f990866f8b8f1acbe1852c592dec3e6 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 25 Dec 2023 14:01:34 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@57227 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/html-api/class-wp-html-tag-processor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/html-api/class-wp-html-tag-processor.php b/src/wp-includes/html-api/class-wp-html-tag-processor.php index 7b17276f92..ee6209c69e 100644 --- a/src/wp-includes/html-api/class-wp-html-tag-processor.php +++ b/src/wp-includes/html-api/class-wp-html-tag-processor.php @@ -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