From b9511169354b5d70446d3a811f8c09699f399bdf Mon Sep 17 00:00:00 2001 From: phutnick Date: Tue, 4 Sep 2001 19:16:25 +0000 Subject: [PATCH 1/1] Added conversion of &apm; back into & to display &lt; as <. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1487 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/read_body.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/read_body.php b/src/read_body.php index 95368c10..e49e6757 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -427,6 +427,8 @@ $body = formatBody($imapConnection, $message, $color, $wrap_at); + $body = str_replace("&", "&", $body); + echo $body; echo ''; -- 2.25.1