git-svn-id: https://develop.svn.wordpress.org/trunk@8584 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
b5e5eb7b91
commit
695197e232
@ -871,9 +871,11 @@ class WP_Http_Curl {
|
|||||||
|
|
||||||
if ( true === $r['blocking'] ) {
|
if ( true === $r['blocking'] ) {
|
||||||
curl_setopt( $handle, CURLOPT_HEADER, true );
|
curl_setopt( $handle, CURLOPT_HEADER, true );
|
||||||
|
curl_setopt( $handle, CURLOPT_RETURNTRANSFER, 1 );
|
||||||
} else {
|
} else {
|
||||||
curl_setopt( $handle, CURLOPT_HEADER, false );
|
curl_setopt( $handle, CURLOPT_HEADER, false );
|
||||||
curl_setopt( $handle, CURLOPT_NOBODY, true );
|
curl_setopt( $handle, CURLOPT_NOBODY, true );
|
||||||
|
curl_setopt( $handle, CURLOPT_RETURNTRANSFER, 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
curl_setopt( $handle, CURLOPT_RETURNTRANSFER, 1 );
|
curl_setopt( $handle, CURLOPT_RETURNTRANSFER, 1 );
|
||||||
@ -894,6 +896,7 @@ class WP_Http_Curl {
|
|||||||
curl_setopt( $handle, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1 );
|
curl_setopt( $handle, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1 );
|
||||||
|
|
||||||
if ( ! $r['blocking'] ) {
|
if ( ! $r['blocking'] ) {
|
||||||
|
curl_exec( $handle );
|
||||||
curl_close( $handle );
|
curl_close( $handle );
|
||||||
return array( 'headers' => array(), 'body' => '', 'response' => array('code', 'message') );
|
return array( 'headers' => array(), 'body' => '', 'response' => array('code', 'message') );
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user