From a9edd7ba88d1da7316c077f7f61d351a6b3aa13c Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 6 Dec 2021 10:14:06 +0000 Subject: [PATCH] Build/Test Tools: Remove the `replace:emoji-banner-text` Grunt task. The task was previously used to ensure that `/*! This file is auto-generated */` comment is not included on front end as part of the inline emoji detection script. As the `wp-emoji-loader.js` script is now included via `file_get_contents()` and `wp_print_inline_script_tag()` instead of `grunt-include` to simplify the logic, the task does not find anything to replace and is no longer necessary. Additionally, include a line break before the `wp-emoji-loader.js` script content for better line wrapping. Follow-up to [48096], [50651], [52132]. See #44632, #44306, #53363. Built from https://develop.svn.wordpress.org/trunk@52325 git-svn-id: http://core.svn.wordpress.org/trunk@51917 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/formatting.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index 5a135f0f0e..9c8b71cfbf 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -5787,7 +5787,7 @@ function _print_emoji_detection_script() { } wp_print_inline_script_tag( - sprintf( 'window._wpemojiSettings = %s;', wp_json_encode( $settings ) ) . + sprintf( 'window._wpemojiSettings = %s;', wp_json_encode( $settings ) ) . "\n" . file_get_contents( sprintf( ABSPATH . WPINC . '/js/wp-emoji-loader' . wp_scripts_get_suffix() . '.js' ) ) ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 3f095389ac..7e94382e0f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-beta1-52324'; +$wp_version = '5.9-beta1-52325'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.