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

See #31651.


Built from https://develop.svn.wordpress.org/trunk@31977


git-svn-id: http://core.svn.wordpress.org/trunk@31956 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Gary Pendergast 2015-04-02 00:11:27 +00:00
parent 216fc034fb
commit 2b7efe5c86
2 changed files with 3 additions and 3 deletions

View File

@ -4125,7 +4125,7 @@ function print_emoji_detection_script() {
*
* @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.
@ -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( '//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 */
$ext = apply_filters( 'emoji_ext', '.png' );

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.2-beta3-31976';
$wp_version = '4.2-beta3-31977';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.