diff --git a/wp-includes/block-editor.php b/wp-includes/block-editor.php index d96569e331..7fc1e75573 100644 --- a/wp-includes/block-editor.php +++ b/wp-includes/block-editor.php @@ -189,7 +189,7 @@ function get_default_block_editor_settings() { } $default_size = get_option( 'image_default_size', 'large' ); - $image_default_size = in_array( $default_size, array_keys( $image_size_names ), true ) ? $image_default_size : 'large'; + $image_default_size = in_array( $default_size, array_keys( $image_size_names ), true ) ? $default_size : 'large'; $image_dimensions = array(); $all_sizes = wp_get_registered_image_subsizes(); diff --git a/wp-includes/version.php b/wp-includes/version.php index b8f40f452f..3eeebfb4b9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.8-alpha-50797'; +$wp_version = '5.8-alpha-50798'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.