From c7935430614e41a42fc5f03b91078ebdc7255963 Mon Sep 17 00:00:00 2001 From: stekkel Date: Thu, 5 Sep 2002 12:22:13 +0000 Subject: [PATCH] fixed warning git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3563 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/view_text.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/view_text.php b/src/view_text.php index 7d57fd72..b1ed0c43 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -46,7 +46,8 @@ "". "
". "
"; - if ($type1 == 'html' || $override_type1 == 'html') { + if ($type1 == 'html' || + (isset($override_type1) && $override_type1 == 'html')) { $body = MagicHTML( $body, $passed_id, $message, $mailbox); } else { translateText($body, $wrap_at, $charset); -- 2.25.1