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:
parent
0058fa9195
commit
6eebb7cd54
|
@ -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 ) {
|
||||||
|
|
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue