Make WordPress Core

Ticket #20219: 20219.patch

File 20219.patch, 987 bytes (added by SergeyBiryukov, 13 years ago)
  • wp-includes/class-http.php

     
    11101110                        $theBody = $theResponse;
    11111111
    11121112                // If no response
    1113                 if ( 0 == strlen($theResponse) && empty( $theHeaders ) ) {
    1114                         if ( $curl_error = curl_error($handle) )
    1115                                 return new WP_Error('http_request_failed', $curl_error);
    1116                         if ( in_array( curl_getinfo( $handle, CURLINFO_HTTP_CODE ), array(301, 302) ) )
    1117                                 return new WP_Error('http_request_failed', __('Too many redirects.'));
     1113                if ( 0 == strlen( $theResponse ) && empty( $theHeaders->headers ) ) {
     1114                        if ( $curl_error = curl_error( $handle ) )
     1115                                return new WP_Error( 'http_request_failed', $curl_error );
     1116                        if ( in_array( curl_getinfo( $handle, CURLINFO_HTTP_CODE ), array( 301, 302 ) ) )
     1117                                return new WP_Error( 'http_request_failed', __( 'Too many redirects.' ) );
    11181118                }
    11191119
    11201120                $this->headers = '';