From 1bf946e6188f972300feae81616c66bdbe1d4d03 Mon Sep 17 00:00:00 2001 From: matt Date: Mon, 14 Nov 2005 11:38:15 +0000 Subject: [PATCH] Fixes #1515 git-svn-id: http://svn.automattic.com/wordpress/trunk@3085 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-mail.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/wp-mail.php b/wp-mail.php index 0978952ec6..2b2fcc24e3 100644 --- a/wp-mail.php +++ b/wp-mail.php @@ -50,9 +50,7 @@ for ($i=1; $i <= $count; $i++) : if (preg_match('/Subject: /i', $line)) { $subject = trim($line); $subject = substr($subject, 9, strlen($subject)-9); - if (!preg_match('#\=\?(.+)\?Q\?(.+)\?\=#i', $subject)) { - $subject = wp_iso_descrambler($subject); - } + $subject = wp_iso_descrambler($subject); // Captures any text in the subject before $phone_delim as the subject $subject = explode($phone_delim, $subject); $subject = $subject[0];