Make WordPress Core


Ignore:
Timestamp:
12/13/2011 11:45:31 PM (13 years ago)
Author:
ryan
Message:

Use one space, not two, after trailing punctuation. fixes #19537

File:
1 edited

Legend:

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

    r19094 r19593  
    202202     * @param string $url URL to Request
    203203     *
    204      * @return string|false Class name for the first transport that claims to support the request.  False if no transport claims to support the request.
     204     * @return string|false Class name for the first transport that claims to support the request. False if no transport claims to support the request.
    205205     */
    206206    public function _get_first_available_transport( $args, $url = null ) {
     
    10321032
    10331033
    1034         // CURLOPT_TIMEOUT and CURLOPT_CONNECTTIMEOUT expect integers.  Have to use ceil since
     1034        // CURLOPT_TIMEOUT and CURLOPT_CONNECTTIMEOUT expect integers. Have to use ceil since
    10351035        // a value of 0 will allow an unlimited timeout.
    10361036        $timeout = (int) ceil( $r['timeout'] );
Note: See TracChangeset for help on using the changeset viewer.