From ac61ac62cd52a13971534c7012825a01c49080d8 Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Sun, 15 Mar 2015 11:41:27 +0000 Subject: [PATCH] Smilies: The new smilies added in [31733] and [31745] are larger than the old smilies. While this is taken care of by the CSS on normal pages, it means they're disproportionally large when seen in RSS and email. By adding a little bit of inline style to them, we get pleasingly sized smilies everywhere. :-) See #31242 Built from https://develop.svn.wordpress.org/trunk@31781 git-svn-id: http://core.svn.wordpress.org/trunk@31761 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/formatting.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index bebc63876d..c55b8aba7b 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -2064,7 +2064,7 @@ function translate_smiley( $matches ) { */ $src_url = apply_filters( 'smilies_src', includes_url( "images/smilies/$img" ), $img, site_url() ); - return sprintf( '%s', esc_url( $src_url ), esc_attr( $smiley ) ); + return sprintf( '%s', esc_url( $src_url ), esc_attr( $smiley ) ); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 36179d20cf..bb041c6016 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-beta1-31780'; +$wp_version = '4.2-beta1-31781'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.