From 933bb3999b1a26db025dd439fd0baecfeed12adc Mon Sep 17 00:00:00 2001 From: audrasjb Date: Tue, 28 Feb 2023 12:52:18 +0000 Subject: [PATCH] Help/About: Avoid extra redirections on HelpHub Links. This changeset replaces various HelpHub links that have changed to avoid extra 301 redirections. Follow-up to [55412], [55413], [55414], [55415], [55416], [55431]. Props sabernhardt, audrasjb. Fixes #57726. Built from https://develop.svn.wordpress.org/trunk@55432 git-svn-id: http://core.svn.wordpress.org/trunk@54965 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/customize.php | 2 +- wp-admin/theme-editor.php | 2 +- wp-includes/version.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/customize.php b/wp-admin/customize.php index 6597806e2f..87fb749ad5 100644 --- a/wp-admin/customize.php +++ b/wp-admin/customize.php @@ -250,7 +250,7 @@ do_action( 'customize_controls_head' );

Documentation on Customizer' ); + _e( 'Documentation on Customizer' ); ?>

diff --git a/wp-admin/theme-editor.php b/wp-admin/theme-editor.php index 790a16f781..f88d14db22 100644 --- a/wp-admin/theme-editor.php +++ b/wp-admin/theme-editor.php @@ -51,7 +51,7 @@ get_current_screen()->set_help_sidebar( '

' . __( 'For more information:' ) . '

' . '

' . __( 'Documentation on Theme Development' ) . '

' . '

' . __( 'Documentation on Editing Themes' ) . '

' . - '

' . __( 'Documentation on Editing Files' ) . '

' . + '

' . __( 'Documentation on Editing Files' ) . '

' . '

' . __( 'Documentation on Template Tags' ) . '

' . '

' . __( 'Support forums' ) . '

' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index cc5ef7d487..51f154a93a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-beta3-55431'; +$wp_version = '6.2-beta3-55432'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.