Changeset 44644
- Timestamp:
- 01/18/2019 01:41:41 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/package-lock.json
r44533 r44644 15275 15275 }, 15276 15276 "twemoji": { 15277 "version": "11. 0.0",15278 "resolved": "https://registry.npmjs.org/twemoji/-/twemoji-11. 0.0.tgz",15279 "integrity": "sha 1-fuxX0Sv9H//o1efwXaC2QipgeQ8="15277 "version": "11.2.0", 15278 "resolved": "https://registry.npmjs.org/twemoji/-/twemoji-11.2.0.tgz", 15279 "integrity": "sha512-DgTadXkRHugun6mjUf1k3ni04WC4jHOX1bN5MjuCM3nwRyIMdXIr8FmWzW5mEIZjht5jD3NaEyXC4j3POdQwyQ==" 15280 15280 }, 15281 15281 "type-is": { -
trunk/package.json
r44533 r44644 108 108 "react": "^16.6.3", 109 109 "react-dom": "^16.6.3", 110 "twemoji": "11. 0.0",110 "twemoji": "11.2.0", 111 111 "underscore": "1.8.3", 112 112 "whatwg-fetch": "^3.0.0" -
trunk/src/wp-includes/formatting.php
r44635 r44644 5399 5399 * @param string The emoji base URL for png images. 5400 5400 */ 5401 'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/11 /72x72/' ),5401 'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/11.2.0/72x72/' ), 5402 5402 5403 5403 /** … … 5417 5417 * @param string The emoji base URL for svg images. 5418 5418 */ 5419 'svgUrl' => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/11 /svg/' ),5419 'svgUrl' => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/11.2.0/svg/' ), 5420 5420 5421 5421 /** … … 5541 5541 5542 5542 /** This filter is documented in wp-includes/formatting.php */ 5543 $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/11 /72x72/' );5543 $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/11.2.0/72x72/' ); 5544 5544 5545 5545 /** This filter is documented in wp-includes/formatting.php */ -
trunk/src/wp-includes/general-template.php
r44638 r44644 2963 2963 */ 2964 2964 /** This filter is documented in wp-includes/formatting.php */ 2965 $hints['dns-prefetch'][] = apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/11 /svg/' );2965 $hints['dns-prefetch'][] = apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/11.2.0/svg/' ); 2966 2966 2967 2967 foreach ( $hints as $relation_type => $urls ) { -
trunk/tests/phpunit/tests/formatting/Emoji.php
r43377 r44644 7 7 class Tests_Formatting_Emoji extends WP_UnitTestCase { 8 8 9 private $png_cdn = 'https://s.w.org/images/core/emoji/11 /72x72/';10 private $svn_cdn = 'https://s.w.org/images/core/emoji/11 /svg/';9 private $png_cdn = 'https://s.w.org/images/core/emoji/11.2.0/72x72/'; 10 private $svn_cdn = 'https://s.w.org/images/core/emoji/11.2.0/svg/'; 11 11 12 12 /**
Note: See TracChangeset
for help on using the changeset viewer.