From db65b6b070370435ea49f58b0c861d14681bf1d9 Mon Sep 17 00:00:00 2001 From: alex-brainstorm Date: Thu, 4 Sep 2003 01:33:58 +0000 Subject: [PATCH] Fix spurious semicolon at beginning of html output returned by decodeHeader() when first word of header is encoded. Ouf ;) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@5618 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 f5968d73..53fa5a85 100644 --- a/functions/mime.php +++ b/functions/mime.php @@ -586,7 +586,7 @@ function decodeHeader ($string, $utfencode=true,$htmlsave=true) { } $i = 0; $iLastMatch = -2; - $encoded = false; + $encoded = true; $aString = explode(' ',$string); $ret = ''; -- 2.25.1