From d18ca83a2da4a435f60087169e1a8c2d9edf72f5 Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Wed, 4 Sep 2013 04:49:40 +0000 Subject: [PATCH] WP_HTTP: Re-enable curl, it was accidentally left out of [25224]. See #25007 See #16606 git-svn-id: https://develop.svn.wordpress.org/trunk@25225 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-http.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/class-http.php b/src/wp-includes/class-http.php index 8a86fda22f..0c22669fdd 100644 --- a/src/wp-includes/class-http.php +++ b/src/wp-includes/class-http.php @@ -215,7 +215,7 @@ class WP_Http { * @return string|bool Class name for the first transport that claims to support the request. False if no transport claims to support the request. */ public function _get_first_available_transport( $args, $url = null ) { - $request_order = apply_filters( 'http_api_transports', array( 'streams' ), $args, $url ); + $request_order = apply_filters( 'http_api_transports', array( 'curl', 'streams' ), $args, $url ); // Loop over each transport on each HTTP request looking for one which will serve this request's needs foreach ( $request_order as $transport ) {