Changeset 53951
- Timestamp:
- 08/28/2022 07:49:40 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-fatal-error-handler.php
r53316 r53951 185 185 $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.' ); 186 186 } elseif ( is_protected_endpoint() && wp_recovery_mode()->is_initialized() ) { 187 $message = __( 'There has been a critical error on this website. Please check your site admin email inbox for instructions.' ); 187 if ( is_multisite() ) { 188 $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.' ); 189 } else { 190 $message = __( 'There has been a critical error on this website. Please check your site admin email inbox for instructions.' ); 191 } 188 192 } else { 189 193 $message = __( 'There has been a critical error on this website.' );
Note: See TracChangeset
for help on using the changeset viewer.