From c221adcec8a4cdaf0f89fa83897444671ae4e403 Mon Sep 17 00:00:00 2001 From: lkehresman Date: Fri, 15 Sep 2000 00:21:19 +0000 Subject: [PATCH] if any of the standard headers are blank, read_body.php doesn't show white space, it now makes it the same color as the rest. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@743 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/read_body.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/read_body.php b/src/read_body.php index 81edc14a..a16372b1 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -284,7 +284,7 @@ echo " \n"; echo _("Subject:"); echo " \n"; - echo " $subject\n"; + echo " $subject \n"; echo " \n"; if ($where && $what) { // Got here from a search @@ -298,7 +298,7 @@ echo " \n"; echo _("From:"); echo " \n"; - echo " $from_name\n"; + echo " $from_name \n"; echo " \n"; echo " \n"; /** date **/ @@ -306,7 +306,7 @@ echo " \n"; echo _("Date:"); echo " \n"; - echo " $dateString\n"; + echo " $dateString \n"; echo " \n"; echo " \n"; /** to **/ @@ -314,7 +314,7 @@ echo " \n"; echo _("To:"); echo " \n"; - echo " $to_string\n"; + echo " $to_string \n"; echo " \n"; echo " \n"; /** cc **/ @@ -323,7 +323,7 @@ echo " \n"; echo " Cc:\n"; echo " \n"; - echo " $cc_string\n"; + echo " $cc_string \n"; echo " \n"; echo " \n"; } -- 2.25.1