From 66bb73798bece8ee5a97d657820b961371e5e10a Mon Sep 17 00:00:00 2001 From: audrasjb Date: Tue, 4 Apr 2023 22:43:23 +0000 Subject: [PATCH] Help/About: Use the new `/documentation/` URLs for links about WordPress version. As `https://wordpress.org/support/` was redirected to `https://wordpress.org/documentation/`, this changeset replaces various `/support/*` links with `/documentation/*` to avoid extra redirects. This addresses a missed occurrence from [55624]. Follow-up to [55412], [55413], [55414], [55624]. Props wildworks. See #58052, #57726. Built from https://develop.svn.wordpress.org/trunk@55625 git-svn-id: http://core.svn.wordpress.org/trunk@55137 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/update-core.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php index c33d1557be..53d3d73b60 100644 --- a/wp-admin/update-core.php +++ b/wp-admin/update-core.php @@ -91,7 +91,7 @@ function list_core_update( $update ) { $version_url = sprintf( /* translators: %s: WordPress version. */ - esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), + esc_url( __( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ) ), sanitize_title( $update->current ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index f0b340d8b5..77f4f3959f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-55624'; +$wp_version = '6.3-alpha-55625'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.