diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php index 3145b50549..7caa1063c1 100644 --- a/wp-admin/update-core.php +++ b/wp-admin/update-core.php @@ -593,11 +593,13 @@ function list_plugin_updates() { $plugin_data->update->new_version ); - echo ' ' . $details . $compat . $upgrade_notice; + echo ' ' . $details . $compat; if ( in_array( $plugin_file, $auto_updates, true ) ) { echo $auto_update_notice; } + + echo $upgrade_notice; ?>

diff --git a/wp-includes/version.php b/wp-includes/version.php index 9d259e4c8b..0e3db3f6bf 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-56000'; +$wp_version = '6.3-alpha-56001'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.