Skip deprecated option replacement in wp-mail.php. props Nazgul. fixes #4924
git-svn-id: http://svn.automattic.com/wordpress/trunk@6056 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
95b86a22f5
commit
6ecaec3d1f
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue