Make WordPress Core


Ignore:
Timestamp:
03/18/2009 02:43:45 AM (17 years ago)
Author:
ryan
Message:

Trim trailing whitespace

File:
1 edited

Legend:

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

    r10730 r10810  
    331331    /* If we don't have an email from the input headers default to wordpress@$sitename
    332332     * Some hosts will block outgoing mail from this address if it doesn't exist but
    333      * there's no easy alternative. Defaulting to admin_email might appear to be another 
     333     * there's no easy alternative. Defaulting to admin_email might appear to be another
    334334     * option but some hosts may refuse to relay mail from an unknown domain. See
    335335     * http://trac.wordpress.org/ticket/5007.
    336336     */
    337    
     337
    338338    if ( !isset( $from_email ) ) {
    339339        // Get the site domain and get rid of www.
     
    13841384 *
    13851385 * @param int $length The length of password to generate
    1386  * @param bool $special_chars Whether to include standard special characters 
     1386 * @param bool $special_chars Whether to include standard special characters
    13871387 * @return string The random password
    13881388 **/
     
    15191519
    15201520    if ( is_ssl() )
    1521         $host = 'https://secure.gravatar.com'; 
     1521        $host = 'https://secure.gravatar.com';
    15221522    else
    15231523        $host = 'http://www.gravatar.com';
Note: See TracChangeset for help on using the changeset viewer.