Make WordPress Core

Ticket #35376: 35376.patch

File 35376.patch, 956 bytes (added by ocean90, 9 years ago)
  • src/wp-includes/formatting.php

     
    45324532                 *
    45334533                 * @param string The emoji base URL.
    45344534                 */
    4535                 'baseUrl' => apply_filters( 'emoji_url', set_url_scheme( '//s.w.org/images/core/emoji/72x72/' ) ),
     4535                'baseUrl' => apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/72x72/' ),
    45364536
    45374537                /**
    45384538                 * Filter the extension of the emoji files.
     
    46444644        $text = wp_encode_emoji( $text );
    46454645
    46464646        /** This filter is documented in wp-includes/formatting.php */
    4647         $cdn_url = apply_filters( 'emoji_url', set_url_scheme( '//s.w.org/images/core/emoji/72x72/' ) );
     4647        $cdn_url = apply_filters( 'emoji_url', 'https://s.w.org/images/core/emoji/72x72/' );
    46484648
    46494649        /** This filter is documented in wp-includes/formatting.php */
    46504650        $ext = apply_filters( 'emoji_ext', '.png' );