diff --git a/wp-includes/user.php b/wp-includes/user.php index 0368e21753..499fd9c83a 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -4990,11 +4990,11 @@ function wp_register_persisted_preferences_meta() { 'type' => 'object', 'single' => true, 'show_in_rest' => array( - 'name' => 'persisted_preferences', - 'type' => 'object', - 'context' => array( 'edit' ), - 'schema' => array( + 'name' => 'persisted_preferences', + 'type' => 'object', + 'schema' => array( 'type' => 'object', + 'context' => array( 'edit' ), 'properties' => array( '_modified' => array( 'description' => __( 'The date and time the preferences were updated.' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index d50aa2a857..1777bd7014 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-beta1-54328'; +$wp_version = '6.1-beta1-54329'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.