diff -r c7c34916027a -r 177826044cd9 wp/wp-load.php --- a/wp/wp-load.php Mon Oct 14 18:06:33 2019 +0200 +++ b/wp/wp-load.php Mon Oct 14 18:28:13 2019 +0200 @@ -31,7 +31,7 @@ * * If neither set of conditions is true, initiate loading the setup process. */ -if ( file_exists( ABSPATH . 'wp-config.php') ) { +if ( file_exists( ABSPATH . 'wp-config.php' ) ) { /** The config file resides in ABSPATH */ require_once( ABSPATH . 'wp-config.php' ); @@ -72,7 +72,7 @@ wp_load_translations_early(); // Die with an error message - $die = sprintf( + $die = sprintf( /* translators: %s: wp-config.php */ __( "There doesn't seem to be a %s file. I need this before we can get started." ), 'wp-config.php' @@ -87,7 +87,7 @@ __( "You can create a %s file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file." ), 'wp-config.php' ) . '

'; - $die .= '

' . __( "Create a Configuration File" ) . ''; + $die .= '

' . __( 'Create a Configuration File' ) . ''; wp_die( $die, __( 'WordPress › Error' ) ); }