wp/wp-includes/class-wp-fatal-error-handler.php
changeset 22 8c2e4d02f4ef
parent 21 48c4eec2b7e6
equal deleted inserted replaced
21:48c4eec2b7e6 22:8c2e4d02f4ef
   188 			$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.' );
   188 			$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.' );
   189 		} elseif ( is_protected_endpoint() && wp_recovery_mode()->is_initialized() ) {
   189 		} elseif ( is_protected_endpoint() && wp_recovery_mode()->is_initialized() ) {
   190 			if ( is_multisite() ) {
   190 			if ( is_multisite() ) {
   191 				$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.' );
   191 				$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.' );
   192 			} else {
   192 			} else {
   193 				$message = __( 'There has been a critical error on this website. Please check your site admin email inbox for instructions.' );
   193 				$message = sprintf(
       
   194 					/* translators: %s: Support forums URL. */
       
   195 					__( '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 <a href="%s">support forums</a>.' ),
       
   196 					__( 'https://wordpress.org/support/forums/' )
       
   197 				);
   194 			}
   198 			}
   195 		} else {
   199 		} else {
   196 			$message = __( 'There has been a critical error on this website.' );
   200 			$message = __( 'There has been a critical error on this website.' );
   197 		}
   201 		}
   198 
   202