From 453c78db601a247593b0fa0b2ac63b11b457c705 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 20 Apr 2024 04:01:18 +0000 Subject: [PATCH] Coding Standards: Use strict comparison in `wp_add_global_styles_for_blocks()`. Follow-up to [57546]. Props immeet94. Fixes #60964. Built from https://develop.svn.wordpress.org/trunk@58026 git-svn-id: http://core.svn.wordpress.org/trunk@57492 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/global-styles-and-settings.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/global-styles-and-settings.php b/wp-includes/global-styles-and-settings.php index fae7ae6ffb..fd1890c53a 100644 --- a/wp-includes/global-styles-and-settings.php +++ b/wp-includes/global-styles-and-settings.php @@ -329,7 +329,7 @@ function wp_add_global_styles_for_blocks() { if ( str_starts_with( $metadata['name'], 'core/' ) ) { $block_name = str_replace( 'core/', '', $metadata['name'] ); $block_handle = 'wp-block-' . $block_name; - if ( in_array( $block_handle, $wp_styles->queue ) ) { + if ( in_array( $block_handle, $wp_styles->queue, true ) ) { wp_add_inline_style( $stylesheet_handle, $block_css ); } } else { @@ -344,7 +344,7 @@ function wp_add_global_styles_for_blocks() { if ( str_starts_with( $block_name, 'core/' ) ) { $block_name = str_replace( 'core/', '', $block_name ); $block_handle = 'wp-block-' . $block_name; - if ( in_array( $block_handle, $wp_styles->queue ) ) { + if ( in_array( $block_handle, $wp_styles->queue, true ) ) { wp_add_inline_style( $stylesheet_handle, $block_css ); } } else { diff --git a/wp-includes/version.php b/wp-includes/version.php index a6c033f079..629307891b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.6-alpha-58025'; +$wp_version = '6.6-alpha-58026'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.