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.