From e235ccb25b93f180692370bfa451d0c94075d5be Mon Sep 17 00:00:00 2001 From: fidian Date: Wed, 12 Sep 2001 23:04:33 +0000 Subject: [PATCH] Fixed flaw in logic git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1501 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 61952677..345e0524 100644 --- a/functions/mime.php +++ b/functions/mime.php @@ -553,7 +553,7 @@ // If there are other types that shouldn't be formatted, add // them here - if ($body_message->header->type1 != "html" && $show_html_default) { + if ($body_message->header->type1 != "html" || ! $show_html_default) { translateText($body, $wrap_at, $body_message->header->charset); } -- 2.25.1