From add0b05da6b9279d3e6442ee4c48c0c37372be5c Mon Sep 17 00:00:00 2001 From: alec Date: Fri, 5 Sep 2008 07:05:29 +0000 Subject: -fixed r1733 change git-svn-id: https://svn.roundcube.net/trunk@1734 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/lib/Mail/mimePart.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'roundcubemail/program/lib/Mail/mimePart.php') diff --git a/roundcubemail/program/lib/Mail/mimePart.php b/roundcubemail/program/lib/Mail/mimePart.php index a9385d715..bd3047724 100644 --- a/roundcubemail/program/lib/Mail/mimePart.php +++ b/roundcubemail/program/lib/Mail/mimePart.php @@ -397,7 +397,7 @@ class Mail_mimePart { // RFC 2183/2184/2822: // value needs encoding if contains non-ASCII chars or is longer than 78 chars - if (preg_match('#[\x20-\x7E]#', $value)) { // ASCII + if (!preg_match('#[^\x20-\x7E]#', $value)) { // ASCII $quoted = addcslashes($value, '\\"'); if (strlen($name) + strlen($quoted) + 6 <= $maxLength) return " {$name}=\"{$quoted}\"; "; -- cgit v1.2.3