Make WordPress Core

Changeset 55875

Timestamp:
06/01/2023 06:07:19 PM (14 months ago)
Author:
westonruter
Message:

Emoji: Remove extraneous sprintf() from _print_emoji_detection_script().

The sprintf() is not being passed any values, and there is no placeholder to replace.
This originated in r52132 in which I erroneously included this sprintf() in
two places. I fixed one of the cases in r52151 but I missed the other.

Follow-up to [52132], [52151].

Fixes #58436.
See #44632.

File:
1 edited

Legend:

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

    r55858 r55875  
    59145914    wp_print_inline_script_tag(
    59155915        sprintf( 'window._wpemojiSettings = %s;', wp_json_encode( $settings ) ) . "\n" .
    5916             file_get_contents( sprintf( ABSPATH . WPINC . '/js/wp-emoji-loader' . wp_scripts_get_suffix() . '.js' ) )
     5916            file_get_contents( )
    59175917    );
    59185918}
Note: See TracChangeset for help on using the changeset viewer.