diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php
index 2797741bb2..6963e2280f 100644
--- a/wp-includes/formatting.php
+++ b/wp-includes/formatting.php
@@ -2109,7 +2109,7 @@ function translate_smiley( $matches ) {
*/
$src_url = apply_filters( 'smilies_src', includes_url( "images/smilies/$img" ), $img, site_url() );
- return sprintf( '
', esc_url( $src_url ), esc_attr( $smiley ) );
+ return sprintf( '
', esc_url( $src_url ), esc_attr( $smiley ) );
}
/**
@@ -4275,7 +4275,7 @@ function wp_staticize_emoji( $text ) {
$chars = str_replace( array( '', ';'), '', $flag );
list( $char1, $char2 ) = str_split( $chars, 5 );
- $entity = '
';
+ $entity = '
';
$content = str_replace( $flag, $entity, $content );
}
@@ -4290,7 +4290,7 @@ function wp_staticize_emoji( $text ) {
if ( ! empty( $matches[1] ) ) {
foreach ( $matches[1] as $emoji ) {
$char = str_replace( array( '', ';'), '', $emoji );
- $entity = '
';
+ $entity = '
';
$content = str_replace( $emoji, $entity, $content );
}
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 9cb37a93a6..944469faef 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.2-beta3-31908';
+$wp_version = '4.2-beta3-31909';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.