From 10c92bef09262b7d46e6c87893715bb5a2e5e4a1 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Wed, 30 Aug 2006 15:55:55 -0400 Subject: [PATCH] New indentation for quoted message text; HTML validity --- program/include/main.inc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/program/include/main.inc b/program/include/main.inc index 7458fe1..ecf53b5 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -921,7 +921,6 @@ { $html_encode_arr = get_html_translation_table(HTML_SPECIALCHARS); unset($html_encode_arr['?']); - unset($html_encode_arr['&']); } $ltpos = strpos($str, '<'); @@ -933,6 +932,7 @@ unset($encode_arr['"']); unset($encode_arr['<']); unset($encode_arr['>']); + unset($encode_arr['&']); } else if ($mode=='remove') $str = strip_tags($str); -- Gitblit v1.9.1