From 2fdd20da4920a6ef4fcb2ca3c9949f4e760b1b0b Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 9 Feb 2021 16:59:04 +0000 Subject: [PATCH] Site Health: Link to the support article on troubleshooting in "There has been a critical error" message. This page is more geared towards users than the one on debugging, which is more developer-oriented. Props audrasjb, Clorith, Ipstenu. Fixes #52392. Built from https://develop.svn.wordpress.org/trunk@50272 git-svn-id: http://core.svn.wordpress.org/trunk@49917 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-fatal-error-handler.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-includes/class-wp-fatal-error-handler.php b/wp-includes/class-wp-fatal-error-handler.php index 0f6692e603..412e1299f4 100644 --- a/wp-includes/class-wp-fatal-error-handler.php +++ b/wp-includes/class-wp-fatal-error-handler.php @@ -191,9 +191,9 @@ class WP_Fatal_Error_Handler { $message = sprintf( '

%s

%s

', $message, - /* translators: Documentation explaining debugging in WordPress. */ - __( 'https://wordpress.org/support/article/debugging-in-wordpress/' ), - __( 'Learn more about debugging in WordPress.' ) + /* translators: Documentation about troubleshooting. */ + __( 'https://wordpress.org/support/article/faq-troubleshooting/' ), + __( 'Learn more about troubleshooting WordPress.' ) ); $args = array( diff --git a/wp-includes/version.php b/wp-includes/version.php index 845ab982fd..5d51abf590 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-beta1-50271'; +$wp_version = '5.7-beta1-50272'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.