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
This commit is contained in:
Sergey Biryukov 2024-08-13 16:29:18 +00:00
parent 0058fa9195
commit 6eebb7cd54
2 changed files with 3 additions and 3 deletions

View File

@ -762,8 +762,8 @@ function wp_replace_in_html_tags( $haystack, $replace_pairs ) {
// Optimize when searching for one item. // Optimize when searching for one item.
if ( 1 === count( $replace_pairs ) ) { if ( 1 === count( $replace_pairs ) ) {
// Extract $needle and $replace. // 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. // Loop through delimiters (elements) only.
for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) { for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) {

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.