Changeset 10810 for trunk/wp-mail.php
- Timestamp:
- 03/18/2009 02:43:45 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-mail.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-mail.php
r10412 r10810 143 143 } 144 144 145 $subject = trim($subject); 146 145 $subject = trim($subject); 146 147 147 if ( $content_type == 'multipart/alternative' ) { 148 148 $content = explode('--'.$boundary, $content); … … 160 160 //Either the raw content or the content of the last quoted-printable section 161 161 $content = apply_filters('wp_mail_original_content', $content); 162 162 163 163 if ( false !== stripos($content_transfer_encoding, "quoted-printable") ) { 164 164 $content = quoted_printable_decode($content);
Note: See TracChangeset
for help on using the changeset viewer.