diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index 2b55509aeb..ed28e0ae9b 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -633,7 +633,7 @@ function wp_replace_in_html_tags( $haystack, $replace_pairs ) { foreach ( $replace_pairs as $needle => $replace ); // Loop through delimeters (elements) only. - for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) { + for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) { if ( false !== strpos( $textarr[$i], $needle ) ) { $textarr[$i] = str_replace( $needle, $replace, $textarr[$i] ); $changed = true; @@ -644,7 +644,7 @@ function wp_replace_in_html_tags( $haystack, $replace_pairs ) { $needles = array_keys( $replace_pairs ); // Loop through delimeters (elements) only. - for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) { + for ( $i = 1, $c = count( $textarr ); $i < $c; $i += 2 ) { foreach ( $needles as $needle ) { if ( false !== strpos( $textarr[$i], $needle ) ) { $textarr[$i] = strtr( $textarr[$i], $replace_pairs ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 0183da0997..d0e3c1bf34 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-beta4-33410'; +$wp_version = '4.3-beta4-33411'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.