From 51da06f52e8d966c129cdd256ad5efa08b2be42b Mon Sep 17 00:00:00 2001 From: gustavf Date: Thu, 21 Sep 2000 08:13:19 +0000 Subject: [PATCH] Changed formatting of headers in forwarded messages. This closes bug #113029 Wrong alignment when forwarding messages git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@750 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/compose.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compose.php b/src/compose.php index 0d8784f9..bdc08601 100644 --- a/src/compose.php +++ b/src/compose.php @@ -78,8 +78,8 @@ if ($i==0 && $forward_id) { $tmp = "-------- " . _("Original Message") . " --------\n"; $tmp .= _("Subject") . ": " . $orig_header->subject . "\n"; - $tmp .= " " . _("From") . ": " . $orig_header->from . "\n"; - $tmp .= " " . _("To") . ": " . $orig_header->to[0] . "\n"; + $tmp .= _("From") . ": " . $orig_header->from . "\n"; + $tmp .= _("To") . ": " . $orig_header->to[0] . "\n"; if (count($orig_header->to) > 1) { for ($x=1; $x < count($orig_header->to); $x++) { $tmp .= " " . $orig_header->to[$x] . "\n"; -- 2.25.1