From b42ea9c4eac4d750473119a0cc7b5236c3e66e86 Mon Sep 17 00:00:00 2001 From: markjaquith Date: Thu, 21 Jan 2010 12:02:55 +0000 Subject: [PATCH] Update the inline documentation for HTTP to reflect the true order of HTTP transports git-svn-id: http://svn.automattic.com/wordpress/trunk@12785 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/http.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/http.php b/wp-includes/http.php index ddfba45c2..2742eb890 100644 --- a/wp-includes/http.php +++ b/wp-includes/http.php @@ -73,7 +73,7 @@ class WP_Http { * Tests all of the objects and returns the object that passes. Also caches * that object to be used later. * - * The order for the GET/HEAD requests are Streams, HTTP Extension, Fopen, + * The order for the GET/HEAD requests are HTTP Extension, cURL, Streams, Fopen, * and finally Fsockopen. fsockopen() is used last, because it has the most * overhead in its implementation. There isn't any real way around it, since * redirects have to be supported, much the same way the other transports