Ticket #23175: 23175.patch
File 23175.patch, 1.3 KB (added by , 12 years ago) |
---|
-
wp-admin/includes/file.php
87 87 $home_path = substr( $_SERVER['SCRIPT_FILENAME'], 0, $pos ); 88 88 $home_path = trailingslashit( $home_path ); 89 89 } else { 90 $home_path = ABSPATH;90 $home_path = str_replace( '\\', '/', ABSPATH ); 91 91 } 92 92 93 93 return $home_path; -
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