Skip to content

Commit 3f82687

Browse files
committed
Changing folder location.
A request was cached prior to the folder being deployed to w.org.
1 parent fd1c3e4 commit 3f82687

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/wp-includes/formatting.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5935,7 +5935,7 @@ function _print_emoji_detection_script() {
59355935
*
59365936
* @param string $url The emoji base URL for png images.
59375937
*/
5938-
'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/17.0.1/72x72/' ),
5938+
'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/17.0.1-1/72x72/' ),
59395939

59405940
/**
59415941
* Filters the extension of the emoji png files.
@@ -5953,7 +5953,7 @@ function _print_emoji_detection_script() {
59535953
*
59545954
* @param string $url The emoji base URL for svg images.
59555955
*/
5956-
'svgUrl' => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/17.0.1/svg/' ),
5956+
'svgUrl' => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/17.0.1-1/svg/' ),
59575957

59585958
/**
59595959
* Filters the extension of the emoji SVG files.
@@ -6060,7 +6060,7 @@ function wp_staticize_emoji( $text ) {
60606060
}
60616061

60626062
/** This filter is documented in wp-includes/formatting.php */
6063-
$cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/17.0.1/72x72/' );
6063+
$cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/17.0.1-1/72x72/' );
60646064

60656065
/** This filter is documented in wp-includes/formatting.php */
60666066
$ext = apply_filters( 'emoji_ext', '.png' );

tests/phpunit/tests/formatting/emoji.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
*/
77
class Tests_Formatting_Emoji extends WP_UnitTestCase {
88

9-
private $png_cdn = 'https://s.w.org/images/core/emoji/17.0.1/72x72/';
10-
private $svg_cdn = 'https://s.w.org/images/core/emoji/17.0.1/svg/';
9+
private $png_cdn = 'https://s.w.org/images/core/emoji/17.0.1-1/72x72/';
10+
private $svg_cdn = 'https://s.w.org/images/core/emoji/17.0.1-1/svg/';
1111

1212
/**
1313
* @ticket 63842

0 commit comments

Comments
 (0)