### Eclipse Workspace Patch 1.0
#P wordpress-trunk
Index: wp-includes/class-http.php
===================================================================
--- wp-includes/class-http.php	(revision 17521)
+++ wp-includes/class-http.php	(working copy)
@@ -439,7 +439,9 @@
 				continue;
 
 			if ( false === strpos($tempheader, ':') ) {
-				list( , $response['code'], $response['message']) = explode(' ', $tempheader, 3);
+				$stack = explode(' ', $tempheader, 3);
+				$stack[] = (string) $stack[1]; // default reson phrase is string of status code
+				list( , $response['code'], $response['message']) = $stack;
 				continue;
 			}
 
