Make WordPress Core


Ignore:
Timestamp:
08/09/2008 05:36:14 AM (17 years ago)
Author:
ryan
Message:

Trailing whitespace cleanup

File:
1 edited

Legend:

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

    r8588 r8600  
    226226    /**
    227227     * Uses the POST HTTP method.
    228      * 
     228     *
    229229     * Used for sending data that is expected to be in the body.
    230230     *
     
    245245
    246246    /**
    247      * Uses the GET HTTP method. 
     247     * Uses the GET HTTP method.
    248248     *
    249249     * Used for sending data that is expected to be in the body.
     
    265265
    266266    /**
    267      * Uses the HEAD HTTP method. 
     267     * Uses the HEAD HTTP method.
    268268     *
    269269     * Used for sending data that is expected to be in the body.
     
    345345     *
    346346     * @param string|array $headers
    347      * @return array Processed string headers 
     347     * @return array Processed string headers
    348348     */
    349349    function processHeaders($headers) {
     
    358358                continue;
    359359
    360            
     360
    361361            if ( false === strpos($tempheader, ':') ) {
    362362                list( , $iResponseCode, $strResponseMsg) = explode(' ', $tempheader, 3);
     
    661661            $url = str_replace($arrURL['scheme'], 'http', $url);
    662662
    663         $arrContext = array('http' => 
     663        $arrContext = array('http' =>
    664664            array(
    665665                'method' => strtoupper($r['method']),
     
    896896        if ( !ini_get('safe_mode') && !ini_get('open_basedir') )
    897897            curl_setopt( $handle, CURLOPT_FOLLOWLOCATION, true );
    898        
     898
    899899        if( ! is_null($headers) )
    900900            curl_setopt( $handle, CURLOPT_HTTPHEADER, $headers );
Note: See TracChangeset for help on using the changeset viewer.