Changeset 8549 for trunk/wp-includes/http.php
- Timestamp:
- 08/05/2008 05:01:49 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/http.php
r8548 r8549 4 4 * 5 5 * Will eventually replace and standardize the WordPress HTTP requests made. 6 * 7 * @link http://trac.wordpress.org/ticket/4779 HTTP API Proposal 6 8 * 7 9 * @package WordPress … … 795 797 list($theHeaders, $theBody) = explode("\r\n\r\n", $strResponse, 2); 796 798 $theHeaders = WP_Http::processHeaders($theHeaders); 799 $theBody = http_chunked_decode($theBody); 797 800 798 801 $theResponse = array();
Note: See TracChangeset
for help on using the changeset viewer.