Ticket #51356: 51356.diff
File 51356.diff, 3.0 KB (added by , 4 years ago) |
---|
-
package-lock.json
25678 25678 "dev": true 25679 25679 }, 25680 25680 "twemoji": { 25681 "version": "13.0. 0",25682 "resolved": "https://registry.npmjs.org/twemoji/-/twemoji-13.0. 0.tgz",25683 "integrity": "sha512- JIkoLy0lL7ZlsiUKAOdXTp0o8C15O3CzDzAmnWdeDHpjeifmKDDKX4CyViUj+9g33pIqMr8Uhcy1WLwETr8oNg==",25681 "version": "13.0.1", 25682 "resolved": "https://registry.npmjs.org/twemoji/-/twemoji-13.0.1.tgz", 25683 "integrity": "sha512-mrTBq+XpCLM4zm76NJOjLHoQNV9mHdBt3Cba/T5lS1rxn8ArwpqE47mqTocupNlkvcLxoeZJjYSUW0DU5ZwqZg==", 25684 25684 "requires": { 25685 25685 "fs-extra": "^8.0.1", 25686 25686 "jsonfile": "^5.0.0", -
package.json
143 143 "polyfill-library": "3.42.0", 144 144 "react": "16.13.1", 145 145 "react-dom": "16.13.1", 146 "twemoji": "13.0. 0",146 "twemoji": "13.0.1", 147 147 "underscore": "1.8.3", 148 148 "whatwg-fetch": "3.0.0" 149 149 }, -
src/wp-includes/formatting.php
5665 5665 * 5666 5666 * @param string $url The emoji base URL for png images. 5667 5667 */ 5668 'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/13.0. 0/72x72/' ),5668 'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/13.0.1/72x72/' ), 5669 5669 5670 5670 /** 5671 5671 * Filters the extension of the emoji png files. … … 5683 5683 * 5684 5684 * @param string $url The emoji base URL for svg images. 5685 5685 */ 5686 'svgUrl' => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/13.0. 0/svg/' ),5686 'svgUrl' => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/13.0.1/svg/' ), 5687 5687 5688 5688 /** 5689 5689 * Filters the extension of the emoji SVG files. … … 5798 5798 } 5799 5799 5800 5800 /** This filter is documented in wp-includes/formatting.php */ 5801 $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/13.0. 0/72x72/' );5801 $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/13.0.1/72x72/' ); 5802 5802 5803 5803 /** This filter is documented in wp-includes/formatting.php */ 5804 5804 $ext = apply_filters( 'emoji_ext', '.png' ); -
tests/phpunit/tests/formatting/Emoji.php
6 6 */ 7 7 class Tests_Formatting_Emoji extends WP_UnitTestCase { 8 8 9 private $png_cdn = 'https://s.w.org/images/core/emoji/13.0. 0/72x72/';10 private $svn_cdn = 'https://s.w.org/images/core/emoji/13.0. 0/svg/';9 private $png_cdn = 'https://s.w.org/images/core/emoji/13.0.1/72x72/'; 10 private $svn_cdn = 'https://s.w.org/images/core/emoji/13.0.1/svg/'; 11 11 12 12 /** 13 13 * @ticket 36525