diff --git a/wp-admin/includes/file.php b/wp-admin/includes/file.php index eac8ab53a5..16b5cea7ea 100644 --- a/wp-admin/includes/file.php +++ b/wp-admin/includes/file.php @@ -90,7 +90,7 @@ function get_home_path() { $home_path = ABSPATH; } - return $home_path; + return str_replace( '\\', '/', $home_path ); } /** diff --git a/wp-admin/network.php b/wp-admin/network.php index 37181771d1..34ab5171cb 100644 --- a/wp-admin/network.php +++ b/wp-admin/network.php @@ -314,7 +314,7 @@ function network_step2( $errors = false ) { $base = parse_url( $slashed_home, PHP_URL_PATH ); $document_root_fix = str_replace( '\\', '/', realpath( $_SERVER['DOCUMENT_ROOT'] ) ); $abspath_fix = str_replace( '\\', '/', ABSPATH ); - $home_path = 0 === strpos( $abspath_fix, $document_root_fix ) ? $document_root_fix . $base : str_replace( '\\', '/', get_home_path() ); + $home_path = 0 === strpos( $abspath_fix, $document_root_fix ) ? $document_root_fix . $base : get_home_path(); $wp_siteurl_subdir = preg_replace( '#^' . preg_quote( $home_path, '#' ) . '#', '', $abspath_fix ); $rewrite_base = ! empty( $wp_siteurl_subdir ) ? ltrim( trailingslashit( $wp_siteurl_subdir ), '/' ) : '';