From 17f0e47798878c13a66a30c22448d0748a7ca41a Mon Sep 17 00:00:00 2001 From: audrasjb Date: Sun, 9 Jul 2023 22:17:22 +0000 Subject: [PATCH] General: Fix an error introduced in [56179]. Follow-up to [56179]. Unprops audrasjb. Built from https://develop.svn.wordpress.org/trunk@56181 git-svn-id: http://core.svn.wordpress.org/trunk@55693 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-theme-json.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-wp-theme-json.php b/wp-includes/class-wp-theme-json.php index 8e96468f9b..00172b4579 100644 --- a/wp-includes/class-wp-theme-json.php +++ b/wp-includes/class-wp-theme-json.php @@ -3551,9 +3551,9 @@ class WP_Theme_JSON { * Assign defaults, then override those that the block sets by itself. * If the block selector is compounded, will append the element to each * individual block selector. - * $block_selectors = explode( ',', $root_selector ); - * $element_selectors = array(); */ + $block_selectors = explode( ',', $root_selector ); + $element_selectors = array(); foreach ( static::ELEMENTS as $el_name => $el_selector ) { $element_selector = array(); foreach ( $block_selectors as $selector ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index c02a354322..401301ce64 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-beta3-56180'; +$wp_version = '6.3-beta3-56181'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.