Network install: When showing the path to wp-config.php make sure our slashes are normalized.
props VarunAgw. fixes #27025. Built from https://develop.svn.wordpress.org/trunk@27112 git-svn-id: http://core.svn.wordpress.org/trunk@26979 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
12a64b39db
commit
182903034b
|
@ -329,9 +329,11 @@ function network_step2( $errors = false ) {
|
|||
$rewrite_base = ! empty( $wp_siteurl_subdir ) ? ltrim( trailingslashit( $wp_siteurl_subdir ), '/' ) : '';
|
||||
|
||||
|
||||
$location_of_wp_config = ABSPATH;
|
||||
if ( ! file_exists( ABSPATH . 'wp-config.php' ) && file_exists( dirname( ABSPATH ) . '/wp-config.php' ) )
|
||||
$location_of_wp_config = trailingslashit( dirname( ABSPATH ) );
|
||||
$location_of_wp_config = $abspath_fix;
|
||||
if ( ! file_exists( ABSPATH . 'wp-config.php' ) && file_exists( dirname( ABSPATH ) . '/wp-config.php' ) ) {
|
||||
$location_of_wp_config = dirname( $abspath_fix );
|
||||
}
|
||||
$location_of_wp_config = trailingslashit( $location_of_wp_config );
|
||||
|
||||
// Wildcard DNS message.
|
||||
if ( is_wp_error( $errors ) )
|
||||
|
|
Loading…
Reference in New Issue