From 6eebb7cd541c5698da3442111aa56c452b77c012 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 13 Aug 2024 16:29:18 +0000 Subject: [PATCH] Coding Standards: Replace an empty `foreach` loop in `wp_replace_in_html_tags()`. This aims to clarify the intention of the code and improve readability. Follow-up to [33359]. Props jrf, TobiasBg, mi5t4n, dhruvang21, mayura8991, nadimcse, Presskopp, SergeyBiryukov. Fixes #61860. Built from https://develop.svn.wordpress.org/trunk@58889 git-svn-id: http://core.svn.wordpress.org/trunk@58285 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/formatting.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index d170728e01..e618536f41 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -762,8 +762,8 @@ function wp_replace_in_html_tags( $haystack, $replace_pairs ) { // Optimize when searching for one item. if ( 1 === count( $replace_pairs ) ) { // Extract $needle and $replace. - foreach ( $replace_pairs as $needle => $replace ) { - } + $needle = array_key_first( $replace_pairs ); + $replace = $replace_pairs[ $needle ]; // Loop through delimiters (elements) only. for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 37721756aa..569c4accaa 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-58888'; +$wp_version = '6.7-alpha-58889'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.