git-svn-id: https://develop.svn.wordpress.org/trunk@17566 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
d400b19f92
commit
6901f20e9b
@ -218,11 +218,9 @@ class WP_Http {
|
||||
* @return array|object Array containing 'headers', 'body', 'response', 'cookies'. A WP_Error instance upon error
|
||||
*/
|
||||
private function _dispatch_request($url, $args) {
|
||||
static $transports = null;
|
||||
if ( is_null($transports) )
|
||||
$transports = array();
|
||||
static $transports = array();
|
||||
|
||||
$request_order = isset($r['blocking']) && !$r['blocking'] ?
|
||||
$request_order = isset($args['blocking']) && !$args['blocking'] ?
|
||||
array('curl', 'streams', 'fsockopen', 'exthttp') : // non-blocking order
|
||||
array('exthttp', 'curl', 'streams', 'fsockopen'); // blocking order
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user