Make WordPress Core

Changeset 10810 for trunk/wp-mail.php


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-mail.php

    r10412 r10810  
    143143    }
    144144
    145     $subject = trim($subject); 
    146    
     145    $subject = trim($subject);
     146
    147147    if ( $content_type == 'multipart/alternative' ) {
    148148        $content = explode('--'.$boundary, $content);
     
    160160    //Either the raw content or the content of the last quoted-printable section
    161161    $content = apply_filters('wp_mail_original_content', $content);
    162    
     162
    163163    if ( false !== stripos($content_transfer_encoding, "quoted-printable") ) {
    164164        $content = quoted_printable_decode($content);
Note: See TracChangeset for help on using the changeset viewer.