Changeset 42343 for trunk/src/wp-load.php
- Timestamp:
- 11/30/2017 11:09:33 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-load.php
r41289 r42343 32 32 * If neither set of conditions is true, initiate loading the setup process. 33 33 */ 34 if ( file_exists( ABSPATH . 'wp-config.php' ) ) {34 if ( file_exists( ABSPATH . 'wp-config.php' ) ) { 35 35 36 36 /** The config file resides in ABSPATH */ … … 73 73 74 74 // Die with an error message 75 $die 75 $die = 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." ), … … 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>'; 91 91 92 92 wp_die( $die, __( 'WordPress › Error' ) );
Note: See TracChangeset
for help on using the changeset viewer.