From: lkehresman Date: Fri, 15 Sep 2000 00:21:19 +0000 (+0000) Subject: if any of the standard headers are blank, read_body.php doesn't show X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=c221adcec8a4cdaf0f89fa83897444671ae4e403 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 --- 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"; }