Make WordPress Core


Ignore:
Timestamp:
05/11/2017 04:25:22 AM (9 years ago)
Author:
peterwilsoncc
Message:

Emoji: Update Twemoji to version 2.2.5

Updates Twemoji and adds a second Emoji 4 test to include a shrugging man. Emoji 4 is being implemented gradually, while some browsers now support the female technologist, the indifferent shrugging man is breaking things with his presence.

Props peterwilsoncc, pento for code review.
Fixes #40615.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/formatting.php

    r40322 r40626  
    50135013         * @param string The emoji base URL for png images.
    50145014         */
    5015         'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/2.2.1/72x72/' ),
     5015        'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/2.2.5/72x72/' ),
    50165016
    50175017        /**
     
    50315031         * @param string The emoji base URL for svg images.
    50325032         */
    5033         'svgUrl' => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2.2.1/svg/' ),
     5033        'svgUrl' => apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2.2.5/svg/' ),
    50345034
    50355035        /**
     
    51435143
    51445144    /** This filter is documented in wp-includes/formatting.php */
    5145     $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/2.2.1/72x72/' );
     5145    $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/2.2.5/72x72/' );
    51465146
    51475147    /** This filter is documented in wp-includes/formatting.php */
Note: See TracChangeset for help on using the changeset viewer.