### 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)
@@ -304,7 +304,7 @@
 	function processResponse($strResponse) {
 		$res = explode("\r\n\r\n", $strResponse, 2);
 
-		return array('headers' => isset($res[0]) ? $res[0] : array(), 'body' => isset($res[1]) ? $res[1] : '');
+		return array('headers' => $res[0], 'body' => isset($res[1]) ? $res[1] : '');
 	}
 
 	/**
