Make WordPress Core


Ignore:
Timestamp:
08/05/2008 05:01:49 PM (16 years ago)
Author:
ryan
Message:

Fix chunked decoding. Props santosj. see #4779

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/http.php

    r8548 r8549  
    44 *
    55 * Will eventually replace and standardize the WordPress HTTP requests made.
     6 *
     7 * @link http://trac.wordpress.org/ticket/4779 HTTP API Proposal
    68 *
    79 * @package WordPress
     
    795797        list($theHeaders, $theBody) = explode("\r\n\r\n", $strResponse, 2);
    796798        $theHeaders = WP_Http::processHeaders($theHeaders);
     799        $theBody = http_chunked_decode($theBody);
    797800
    798801        $theResponse = array();
Note: See TracChangeset for help on using the changeset viewer.