From da4b76c6b34ac4617ba27988a0d4c3c131492db0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Helen=20Hou-Sand=C3=AD?= Date: Mon, 2 Nov 2020 19:55:07 +0000 Subject: [PATCH] Site Health: Site errors are for *this* site, not necessarily *your* site. Props techboyg5, Clorith, audrasjb. Fixes #51524. Built from https://develop.svn.wordpress.org/trunk@49480 git-svn-id: http://core.svn.wordpress.org/trunk@49239 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 fce925a456..0f6692e603 100644 --- a/wp-includes/class-wp-fatal-error-handler.php +++ b/wp-includes/class-wp-fatal-error-handler.php @@ -181,11 +181,11 @@ class WP_Fatal_Error_Handler { } if ( true === $handled && wp_is_recovery_mode() ) { - $message = __( 'There has been a critical error on your website, putting it in recovery mode. Please check the Themes and Plugins screens for more details. If you just installed or updated a theme or plugin, check the relevant page for that first.' ); + $message = __( 'There has been a critical error on this website, putting it in recovery mode. Please check the Themes and Plugins screens for more details. If you just installed or updated a theme or plugin, check the relevant page for that first.' ); } elseif ( is_protected_endpoint() ) { - $message = __( 'There has been a critical error on your website. Please check your site admin email inbox for instructions.' ); + $message = __( 'There has been a critical error on this website. Please check your site admin email inbox for instructions.' ); } else { - $message = __( 'There has been a critical error on your website.' ); + $message = __( 'There has been a critical error on this website.' ); } $message = sprintf( diff --git a/wp-includes/version.php b/wp-includes/version.php index 9806ab2d93..958fdcbcb0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-beta2-49479'; +$wp_version = '5.6-beta2-49480'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.