From 8dd0db0b2fc1b31b3fa14c3b862be3420c3f2d33 Mon Sep 17 00:00:00 2001 From: fidian Date: Thu, 10 May 2001 20:47:44 +0000 Subject: [PATCH] * Fixed bug with last line of headers not displaying. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1355 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/read_body.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/read_body.php b/src/read_body.php index a489db03..0e9c0faf 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -42,7 +42,7 @@ echo ''; $cnum = 0; - for ($i=1; $i < count($read)-1; $i++) { + for ($i=1; $i < count($read); $i++) { $line = htmlspecialchars($read[$i]); if (eregi("^>", $line)) { $second[$i] = $line; -- 2.25.1