From 56c094f5d45e238433aa6b5b442ec1f0370a4b76 Mon Sep 17 00:00:00 2001 From: graf25 Date: Mon, 27 May 2002 20:07:09 +0000 Subject: [PATCH] Fix for #547511. Apparently some drain-bamaged clients spell it "quoted_printable". Guess who makes those? git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2872 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mime.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions/mime.php b/functions/mime.php index e5b0e9fc..17882889 100644 --- a/functions/mime.php +++ b/functions/mime.php @@ -1011,7 +1011,8 @@ function decodeBody($body, $encoding) { global $show_html_default; - if ($encoding == 'quoted-printable') { + if ($encoding == 'quoted-printable' || + $encoding == 'quoted_printable') { $body = quoted_printable_decode($body); -- 2.25.1