Make WordPress Core


Ignore:
Timestamp:
03/12/2013 11:04:14 AM (12 years ago)
Author:
SergeyBiryukov
Message:

Make get_home_path() return consistent slashes. fixes #23175.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/network.php

    r23567 r23669  
    315315    $document_root_fix = str_replace( '\\', '/', realpath( $_SERVER['DOCUMENT_ROOT'] ) );
    316316    $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();
    318318    $wp_siteurl_subdir = preg_replace( '#^' . preg_quote( $home_path, '#' ) . '#', '', $abspath_fix );
    319319    $rewrite_base      = ! empty( $wp_siteurl_subdir ) ? ltrim( trailingslashit( $wp_siteurl_subdir ), '/' ) : '';
Note: See TracChangeset for help on using the changeset viewer.