Ticket #23175: 23175.2.patch
File 23175.2.patch, 1.2 KB (added by , 12 years ago) |
---|
-
wp-admin/includes/file.php
90 90 $home_path = ABSPATH; 91 91 } 92 92 93 return $home_path;93 return str_replace( '\\', '/', $home_path ); 94 94 } 95 95 96 96 /** -
wp-admin/network.php
314 314 $base = parse_url( $slashed_home, PHP_URL_PATH ); 315 315 $document_root_fix = str_replace( '\\', '/', realpath( $_SERVER['DOCUMENT_ROOT'] ) ); 316 316 $abspath_fix = str_replace( '\\', '/', ABSPATH ); 317 $home_path = 0 === strpos( $abspath_fix, $document_root_fix ) ? $document_root_fix . $base : str_replace( '\\', '/', get_home_path());317 $home_path = 0 === strpos( $abspath_fix, $document_root_fix ) ? $document_root_fix . $base : get_home_path(); 318 318 $wp_siteurl_subdir = preg_replace( '#^' . preg_quote( $home_path, '#' ) . '#', '', $abspath_fix ); 319 319 $rewrite_base = ! empty( $wp_siteurl_subdir ) ? ltrim( trailingslashit( $wp_siteurl_subdir ), '/' ) : ''; 320 320