Make WordPress Core

Ticket #34512: whitespace.diff

File whitespace.diff, 890 bytes (added by rachelbaker, 11 years ago)
  • src/wp-includes/rest-api/rest-functions.php

     
    254254                $url = add_query_arg( 'rest_route', $path, $url );
    255255        }
    256256
    257         if ( is_ssl() ) { 
    258                 // If the current host is the same as the REST URL host, force the REST URL scheme to HTTPS 
    259                 if ( $_SERVER['SERVER_NAME'] === parse_url( get_home_url( $blog_id ), PHP_URL_HOST ) ) { 
    260                         $url = set_url_scheme( $url, 'https' ); 
    261                 } 
    262         } 
     257        if ( is_ssl() ) {
     258                // If the current host is the same as the REST URL host, force the REST URL scheme to HTTPS.
     259                if ( $_SERVER['SERVER_NAME'] === parse_url( get_home_url( $blog_id ), PHP_URL_HOST ) ) {
     260                        $url = set_url_scheme( $url, 'https' );
     261                }
     262        }
    263263
    264264        /**
    265265         * Filter the REST URL.