Make WordPress Core

Changeset 28317


Ignore:
Timestamp:
05/06/2014 06:26:00 PM (11 years ago)
Author:
wonderboymusic
Message:

In WP_Http_Curl::request(), $theResponse is unused. There are other curl_exec() calls that do not return as well.

See #27882.

File:
1 edited

Legend:

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

    r27952 r28317  
    13731373        }
    13741374
    1375         $theResponse = curl_exec( $handle );
     1375        curl_exec( $handle );
    13761376        $theHeaders = WP_Http::processHeaders( $this->headers, $url );
    13771377        $theBody = $this->body;
Note: See TracChangeset for help on using the changeset viewer.