diff --git a/wp-includes/block-editor.php b/wp-includes/block-editor.php index 814433f278..542fc99d2c 100644 --- a/wp-includes/block-editor.php +++ b/wp-includes/block-editor.php @@ -235,7 +235,7 @@ function get_default_block_editor_settings() { */ function get_block_editor_settings( $editor_name, $custom_settings = array() ) { $editor_settings = array_merge( - get_default_block_editor_settings( $editor_name ), + get_default_block_editor_settings(), array( 'allowedBlockTypes' => get_allowed_block_types( $editor_name ), 'blockCategories' => get_block_categories( $editor_name ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 11608da80b..adfe01cc77 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-50962'; +$wp_version = '5.8-alpha-50963'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.