From b4000c3aaae535e4e9b23b535d96ad7c0fab69d2 Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Tue, 28 Feb 2023 12:50:46 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@55432 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/customize.php | 2 +- src/wp-admin/theme-editor.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/customize.php b/src/wp-admin/customize.php index 6597806e2f..87fb749ad5 100644 --- a/src/wp-admin/customize.php +++ b/src/wp-admin/customize.php @@ -250,7 +250,7 @@ do_action( 'customize_controls_head' );

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

diff --git a/src/wp-admin/theme-editor.php b/src/wp-admin/theme-editor.php index 790a16f781..f88d14db22 100644 --- a/src/wp-admin/theme-editor.php +++ b/src/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' ) . '

' );