Emoji: [31938] forgot a `/` in the emoji CDN URL.

See #31651.



git-svn-id: https://develop.svn.wordpress.org/trunk@31977 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Gary Pendergast 2015-04-02 00:10:36 +00:00
parent f6e4d76e5b
commit 01cbacb308
1 changed files with 2 additions and 2 deletions

View File

@ -4125,7 +4125,7 @@ function print_emoji_detection_script() {
* *
* @param string The emoji base URL. * @param string The emoji base URL.
*/ */
'baseUrl' => apply_filters( 'emoji_url', set_url_scheme( '//s.w.org/images/core/emoji/72x72' ) ), 'baseUrl' => apply_filters( 'emoji_url', set_url_scheme( '//s.w.org/images/core/emoji/72x72/' ) ),
/** /**
* Filter the extension of the emoji files. * 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 */ /** This filter is documented in wp-includes/formatting.php */
$cdn_url = apply_filters( 'emoji_url', set_url_scheme( '//s.w.org/images/core/emoji/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 */ /** This filter is documented in wp-includes/formatting.php */
$ext = apply_filters( 'emoji_ext', '.png' ); $ext = apply_filters( 'emoji_ext', '.png' );