From 5db3477859f4cd2734eb41aaa2d13e76e1e9d4f0 Mon Sep 17 00:00:00 2001 From: isabel_brison Date: Fri, 1 Sep 2023 02:53:19 +0000 Subject: [PATCH] Editor: Preserve block style variations when securing theme. Adds the ability to process block style variations to the `remove_insecure_properties` function of theme json class. Props dsas, ramonopoly. Fixes #59108. Built from https://develop.svn.wordpress.org/trunk@56502 git-svn-id: http://core.svn.wordpress.org/trunk@56014 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-theme-json.php | 15 +++++++++++++++ wp-includes/version.php | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/wp-includes/class-wp-theme-json.php b/wp-includes/class-wp-theme-json.php index d4b50cd953..d4a4fda6a6 100644 --- a/wp-includes/class-wp-theme-json.php +++ b/wp-includes/class-wp-theme-json.php @@ -2821,6 +2821,7 @@ class WP_Theme_JSON { * Removes insecure data from theme.json. * * @since 5.9.0 + * @since 6.3.1 Preserves global styles block variations when securing styles. * * @param array $theme_json Structure to sanitize. * @return array Sanitized structure. @@ -2879,6 +2880,20 @@ class WP_Theme_JSON { if ( ! empty( $output ) ) { _wp_array_set( $sanitized, $metadata['path'], $output ); } + + if ( isset( $metadata['variations'] ) ) { + foreach ( $metadata['variations'] as $variation ) { + $variation_input = _wp_array_get( $theme_json, $variation['path'], array() ); + if ( empty( $variation_input ) ) { + continue; + } + + $variation_output = static::remove_insecure_styles( $variation_input ); + if ( ! empty( $variation_output ) ) { + _wp_array_set( $sanitized, $variation['path'], $variation_output ); + } + } + } } $setting_nodes = static::get_setting_nodes( $theme_json ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 1b43221210..ea0ea564cf 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.4-alpha-56501'; +$wp_version = '6.4-alpha-56502'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.