diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index 6253f8f264..b341ed7313 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -233,6 +233,10 @@ function wptexturize( $text, $reset = false ) { continue; } else { // This is an HTML element delimiter. + + // Replace each & with & unless it already looks like an entity. + $curl = preg_replace( '/&(?!#(?:\d+|x[a-f0-9]+);|[a-z1-4]{1,8};)/i', '&', $curl ); + _wptexturize_pushpop_element( $curl, $no_texturize_tags_stack, $no_texturize_tags ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index a1aee4ce6d..0b200da170 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36034'; +$wp_version = '4.5-alpha-36036'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.