Changeset 35462
- Timestamp:
- 10/30/2015 09:38:36 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/rest-functions.php
r35434 r35462 255 255 } 256 256 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 } 263 263 264 264 /**
Note: See TracChangeset
for help on using the changeset viewer.