### Eclipse Workspace Patch 1.0
#P wordpress-trunk
Index: wp-includes/class-http.php
===================================================================
--- wp-includes/class-http.php	(revision 17551)
+++ wp-includes/class-http.php	(working copy)
@@ -700,7 +700,7 @@
 	 * @static
 	 * @return boolean False means this class can not be used, true means it can.
 	 */
-	function test( $args = array() ) {
+	function test( $args = array(), $url = '' ) {
 		if ( false !== ($option = get_option( 'disable_fsockopen' )) && time()-$option < 43200 ) // 12 hours
 			return false;
 
@@ -868,7 +868,7 @@
 	 *
 	 * @return boolean False means this class can not be used, true means it can.
 	 */
-	function test($args = array()) {
+	function test($args = array(), $url = '' ) {
 		if ( ! function_exists('fopen') || (function_exists('ini_get') && true != ini_get('allow_url_fopen')) )
 			return false;
 
@@ -1021,7 +1021,7 @@
 	 *
 	 * @return boolean False means this class can not be used, true means it can.
 	 */
-	function test($args = array()) {
+	function test($args = array(), $url = '' ) {
 		return apply_filters('use_http_extension_transport', function_exists('http_request'), $args );
 	}
 }
@@ -1207,7 +1207,7 @@
 	 *
 	 * @return boolean False means this class can not be used, true means it can.
 	 */
-	function test($args = array()) {
+	function test($args = array(), $url = '' ) {
 		if ( function_exists('curl_init') && function_exists('curl_exec') )
 			return apply_filters('use_curl_transport', true, $args);
 
