From 5214e469df26317c60b23d0b4719b787474d3d32 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Mon, 23 May 2022 23:53:13 +0000 Subject: [PATCH] Help/About: Finalise links on about page. Wrap up about page for 6.0 release. Props ryelle, mukesh27, hellofromTonya, SergeyBiryukov, peterwilsoncc. Fixes #55775. Built from https://develop.svn.wordpress.org/trunk@53442 git-svn-id: http://core.svn.wordpress.org/trunk@53031 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/about.php | 10 +++++++--- wp-includes/version.php | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/wp-admin/about.php b/wp-admin/about.php index 87302095b0..b4a3ac8644 100644 --- a/wp-admin/about.php +++ b/wp-admin/about.php @@ -255,7 +255,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
@@ -274,7 +274,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; printf( /* translators: %s: 6.0 overview video link. */ __( 'See WordPress 6.0 in action! Watch a brief overview video highlighting some of the major features debuting in WordPress 6.0.' ), - '#' + 'https://www.youtube.com/watch?v=oe452WcY7fA' ); ?>

@@ -311,7 +311,11 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; printf( /* translators: %s: WordPress 6.0 Release Notes link. */ __( 'Read the WordPress 6.0 Release Notes for more information on the included enhancements and issues fixed, installation information, developer notes and resources, release contributors, and the list of file changes in this release.' ), - '#' + sprintf( + /* translators: %s: WordPress version. */ + esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), + '6-0' + ) ); ?>

diff --git a/wp-includes/version.php b/wp-includes/version.php index 947f86d0f4..ac69d4d738 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-53441'; +$wp_version = '6.1-alpha-53442'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.