diff --git a/wp-admin/about.php b/wp-admin/about.php index 709670f9f0..2da21ab02f 100644 --- a/wp-admin/about.php +++ b/wp-admin/about.php @@ -279,10 +279,21 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
- - | - - + %2$s | ', + esc_url( self_admin_url( 'update-core.php' ) ), + is_multisite() ? __( 'Go to Updates' ) : __( 'Go to Dashboard → Updates' ) + ); + } + + printf( + '%2$s', + esc_url( self_admin_url() ), + is_blog_admin() ? __( 'Go to Dashboard → Home' ) : __( 'Go to Dashboard' ) + ); + ?>
diff --git a/wp-includes/version.php b/wp-includes/version.php index 85543dcc37..ae52e77d18 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-55852'; +$wp_version = '6.3-alpha-55853'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.