From 6ecaec3d1fd29b8b0f5027b4eaf2edda3b1aa3ae Mon Sep 17 00:00:00 2001 From: markjaquith Date: Fri, 7 Sep 2007 02:07:13 +0000 Subject: [PATCH] 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 --- wp-mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-mail.php b/wp-mail.php index def4fe6c5b..c78ff97eba 100644 --- a/wp-mail.php +++ b/wp-mail.php @@ -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);