From 4656211357cb4f494081f6b73235f015994c2e8c Mon Sep 17 00:00:00 2001 From: fidian Date: Wed, 18 Oct 2000 17:29:27 +0000 Subject: [PATCH] Closure of bug 117039 Used patch extremely similar to one submitted by embeejay. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@810 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mime.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/mime.php b/functions/mime.php index 81cf581c..2ae23b00 100644 --- a/functions/mime.php +++ b/functions/mime.php @@ -620,7 +620,7 @@ global $default_charset; // Encode only if the string contains 8-bit characters or =? - if (ereg("([\200-\377])|=\\?", $string)) { + if (ereg("([\200-\377]|=\\?)", $string)) { $newstring = "=?$default_charset?Q?"; // First the special characters -- 2.25.1