Make WordPress Core


Ignore:
Timestamp:
09/14/2015 05:36:37 PM (10 years ago)
Author:
wonderboymusic
Message:

Fix the case-sensitivity of some HTTP class usage.

See #33413.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-http-streams.php

    r33878 r34123  
    295295
    296296        // Handle redirects.
    297         if ( false !== ( $redirect_response = WP_HTTP::handle_redirects( $url, $r, $response ) ) )
     297        if ( false !== ( $redirect_response = WP_Http::handle_redirects( $url, $r, $response ) ) )
    298298            return $redirect_response;
    299299
     
    344344         * in the cert (if they exist)
    345345         */
    346         $host_type = ( WP_HTTP::is_ip_address( $host ) ? 'ip' : 'dns' );
     346        $host_type = ( WP_Http::is_ip_address( $host ) ? 'ip' : 'dns' );
    347347
    348348        $certificate_hostnames = array();
Note: See TracChangeset for help on using the changeset viewer.