diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php
index 0377bbdd54..f14ef866db 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 ) );
}
/**
@@ -4200,7 +4200,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 );
}
@@ -4215,7 +4215,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 );
}