From 0c8459d72640fa75e736a67d4f8832ca1f0f993a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 22 Oct 2024 10:16:16 +0000 Subject: [PATCH] Site Health: Add a link to support forums in the message displayed for a critical error. Follow-up to [44962], [45263], [46119], [49480], [53951]. Props ipajen, sabernhardt, desrosj, mukesh27, afragen, webcommsat, hellofromTonya. Fixes #53707. Built from https://develop.svn.wordpress.org/trunk@59270 git-svn-id: http://core.svn.wordpress.org/trunk@58662 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-fatal-error-handler.php | 6 +++++- wp-includes/version.php | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-fatal-error-handler.php b/wp-includes/class-wp-fatal-error-handler.php index fdd56c674a..cb09c6fed8 100644 --- a/wp-includes/class-wp-fatal-error-handler.php +++ b/wp-includes/class-wp-fatal-error-handler.php @@ -190,7 +190,11 @@ class WP_Fatal_Error_Handler { if ( is_multisite() ) { $message = __( 'There has been a critical error on this website. Please reach out to your site administrator, and inform them of this error for further assistance.' ); } else { - $message = __( 'There has been a critical error on this website. Please check your site admin email inbox for instructions.' ); + $message = sprintf( + /* translators: %s: Support forums URL. */ + __( 'There has been a critical error on this website. Please check your site admin email inbox for instructions. If you continue to have problems, please try the support forums.' ), + __( 'https://wordpress.org/support/forums/' ) + ); } } else { $message = __( 'There has been a critical error on this website.' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 4fedf71dfd..48973df1b9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-beta3-59269'; +$wp_version = '6.7-beta3-59270'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.