Changeset 34123 for trunk/src/wp-includes/class-wp-http-streams.php
- Timestamp:
- 09/14/2015 05:36:37 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-http-streams.php
r33878 r34123 295 295 296 296 // Handle redirects. 297 if ( false !== ( $redirect_response = WP_H TTP::handle_redirects( $url, $r, $response ) ) )297 if ( false !== ( $redirect_response = WP_Http::handle_redirects( $url, $r, $response ) ) ) 298 298 return $redirect_response; 299 299 … … 344 344 * in the cert (if they exist) 345 345 */ 346 $host_type = ( WP_H TTP::is_ip_address( $host ) ? 'ip' : 'dns' );346 $host_type = ( WP_Http::is_ip_address( $host ) ? 'ip' : 'dns' ); 347 347 348 348 $certificate_hostnames = array();
Note: See TracChangeset
for help on using the changeset viewer.