From 8475350f0e408d00832caedcfba340bed96f6266 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Tue, 15 Feb 2022 09:58:04 +0000 Subject: [PATCH] Widgets: Missing markup from Widgets Group block. This change fixes an issue in the Widgets editor: widgets group was missing a `.wp-widget-group__inner-blocks` container. Props noisysocks, ironprogrammer. Fixes #55072. Built from https://develop.svn.wordpress.org/trunk@52730 git-svn-id: http://core.svn.wordpress.org/trunk@52319 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/blocks/index.php | 1 + wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/blocks/index.php b/wp-includes/blocks/index.php index f7382b1e9a..755944db03 100644 --- a/wp-includes/blocks/index.php +++ b/wp-includes/blocks/index.php @@ -48,6 +48,7 @@ require ABSPATH . WPINC . '/blocks/social-link.php'; require ABSPATH . WPINC . '/blocks/tag-cloud.php'; require ABSPATH . WPINC . '/blocks/template-part.php'; require ABSPATH . WPINC . '/blocks/term-description.php'; +require ABSPATH . WPINC . '/blocks/widget-group.php'; /** * Registers core block types using metadata files. diff --git a/wp-includes/version.php b/wp-includes/version.php index e6155451f5..c731952c0c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-52726'; +$wp_version = '6.0-alpha-52730'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.