From 48e551feb5d404e0fa1dafbf8e546fcab2d70267 Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Tue, 31 Mar 2015 04:30:38 +0000 Subject: [PATCH] Emoji: Change the emoji CDN to w.org, from wp.com. See #31651. git-svn-id: https://develop.svn.wordpress.org/trunk@31938 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/formatting.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/formatting.php b/src/wp-includes/formatting.php index 6b4e9112e0..74537c1065 100644 --- a/src/wp-includes/formatting.php +++ b/src/wp-includes/formatting.php @@ -4125,7 +4125,7 @@ function print_emoji_detection_script() { * * @param string The emoji base URL. */ - 'baseUrl' => apply_filters( 'emoji_url', set_url_scheme( '//s0.wp.com/wp-content/mu-plugins/emoji/twemoji/72x72' ) ), + 'baseUrl' => apply_filters( 'emoji_url', set_url_scheme( '//s.w.org/images/core/emoji/72x72' ) ), /** * Filter the extension of the emoji files. @@ -4239,7 +4239,7 @@ function wp_staticize_emoji( $text ) { } /** This filter is documented in wp-includes/formatting.php */ - $cdn_url = apply_filters( 'emoji_url', set_url_scheme( '//s0.wp.com/wp-content/mu-plugins/emoji/twemoji/72x72/' ) ); + $cdn_url = apply_filters( 'emoji_url', set_url_scheme( '//s.w.org/images/core/emoji/72x72' ) ); /** This filter is documented in wp-includes/formatting.php */ $ext = apply_filters( 'emoji_ext', '.png' );