Skip deprecated option replacement in wp-mail.php. props Nazgul. fixes #4924

git-svn-id: https://develop.svn.wordpress.org/trunk@6056 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2007-09-07 02:07:13 +00:00
parent 63a17a989a
commit 1b56625a0d

View File

@ -108,7 +108,7 @@ for ($i=1; $i <= $count; $i++) :
}
endforeach;
$subject = trim(str_replace(get_option('subjectprefix'), '', $subject));
$subject = trim($subject);
if ($content_type == 'multipart/alternative') {
$content = explode('--'.$boundary, $content);