Make WordPress Core

Changeset 14924 for trunk/wp-mail.php


Ignore:
Timestamp:
05/26/2010 02:42:15 AM (15 years ago)
Author:
ryan
Message:

Strip trailing whitespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-mail.php

    r14518 r14924  
    3737$pop3 = new POP3();
    3838
    39 if ( !$pop3->connect( get_option('mailserver_url'), get_option('mailserver_port') ) || !$pop3->user( get_option('mailserver_login') ) ) 
     39if ( !$pop3->connect( get_option('mailserver_url'), get_option('mailserver_port') ) || !$pop3->user( get_option('mailserver_login') ) )
    4040    wp_die( esc_html( $pop3->ERROR ) );
    4141
    4242$count = $pop3->pass( get_option('mailserver_pass') );
    4343
    44 if( false === $count ) 
     44if( false === $count )
    4545    wp_die( esc_html( $pop3->ERROR ) );
    46    
     46
    4747if( 0 === $count ) {
    4848    $pop3->quit();
Note: See TracChangeset for help on using the changeset viewer.