Changeset 17600
- Timestamp:
- 04/05/2011 06:41:51 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-http.php
r17599 r17600 317 317 $res = explode("\r\n\r\n", $strResponse, 2); 318 318 319 return array('headers' => isset($res[0]) ? $res[0] : array(), 'body' => isset($res[1]) ? $res[1] : '');319 return array('headers' => $res[0], 'body' => isset($res[1]) ? $res[1] : ''); 320 320 } 321 321
Note: See TracChangeset
for help on using the changeset viewer.