Requests: Update to Requests master (fb5b517) which corrects a logic inversion in the cURL transport checks.

Previously if a host had only disabled one of `curl_init()` or `curl_exec()` it wouldn't get detected correctly by Requests, which caused cURL warnings for users on an affecte dhost.

Fixes #37700 for trunk.

Built from https://develop.svn.wordpress.org/trunk@38274


git-svn-id: http://core.svn.wordpress.org/trunk@38215 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dion Hulse
2016-08-18 03:48:31 +00:00
parent 2bd32687b3
commit 1dd3ed4bd5
2 changed files with 3 additions and 3 deletions

View File

@@ -347,7 +347,7 @@ class Requests_Transport_cURL implements Requests_Transport {
default:
curl_setopt($this->handle, CURLOPT_CUSTOMREQUEST, $options['type']);
if (!empty($data)) {
curl_setopt( $this->handle, CURLOPT_POSTFIELDS, $data );
curl_setopt($this->handle, CURLOPT_POSTFIELDS, $data);
}
}
@@ -524,7 +524,7 @@ class Requests_Transport_cURL implements Requests_Transport {
* @return boolean True if the transport is valid, false otherwise.
*/
public static function test($capabilities = array()) {
if (!function_exists('curl_init') && !function_exists('curl_exec')) {
if (!function_exists('curl_init') || !function_exists('curl_exec')) {
return false;
}