diff --git a/wp-load.php b/wp-load.php
index 3f4d764bfc..2557df8a40 100644
|
a
|
b
|
if ( file_exists( ABSPATH . 'wp-config.php' ) ) { |
| 72 | 72 | wp_load_translations_early(); |
| 73 | 73 | |
| 74 | 74 | // Die with an error message |
| 75 | | $die = sprintf( |
| | 75 | $die = '<p>' . sprintf( |
| 76 | 76 | /* translators: %s: wp-config.php */ |
| 77 | 77 | __( "There doesn't seem to be a %s file. I need this before we can get started." ), |
| 78 | 78 | '<code>wp-config.php</code>' |
| … |
… |
if ( file_exists( ABSPATH . 'wp-config.php' ) ) { |
| 87 | 87 | __( "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." ), |
| 88 | 88 | '<code>wp-config.php</code>' |
| 89 | 89 | ) . '</p>'; |
| 90 | | $die .= '<p><a href="' . $path . '" class="button button-large">' . __( 'Create a Configuration File' ) . '</a>'; |
| | 90 | $die .= '<p><a href="' . $path . '" class="button button-large">' . __( 'Create a Configuration File' ) . '</a></p>'; |
| 91 | 91 | |
| 92 | 92 | wp_die( $die, __( 'WordPress › Error' ) ); |
| 93 | 93 | } |