From 99d0310f77497b99d0f3d0f9f7dcb9e45d574450 Mon Sep 17 00:00:00 2001 From: davidbaumwald Date: Fri, 23 Sep 2022 21:31:10 +0000 Subject: [PATCH] Coding Standards: Correct alignment in `WP_Theme_JSON_Resolver::get_core_data()`. Follow-up to [54251]. See #55647. Built from https://develop.svn.wordpress.org/trunk@54298 git-svn-id: http://core.svn.wordpress.org/trunk@53857 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-theme-json-resolver.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-wp-theme-json-resolver.php b/wp-includes/class-wp-theme-json-resolver.php index 16680e7317..a92f5c1e09 100644 --- a/wp-includes/class-wp-theme-json-resolver.php +++ b/wp-includes/class-wp-theme-json-resolver.php @@ -135,8 +135,8 @@ class WP_Theme_JSON_Resolver { return static::$core; } - $config = static::read_json_file( __DIR__ . '/theme.json' ); - $config = static::translate( $config ); + $config = static::read_json_file( __DIR__ . '/theme.json' ); + $config = static::translate( $config ); /** * Filters the default data provided by WordPress for global styles & settings. * diff --git a/wp-includes/version.php b/wp-includes/version.php index 24336cbf13..6adeed4841 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-beta1-54297'; +$wp_version = '6.1-beta1-54298'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.