From 9a231083488f253ada2ec0fd75b897a7de4fb39f Mon Sep 17 00:00:00 2001 From: thomppj Date: Thu, 15 Aug 2002 16:24:17 +0000 Subject: [PATCH 1/1] Fixed vertical alignment of envelope attributes (which I broke last night) and removed /* BOOKMARK */ comments... git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3313 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/read_body.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/read_body.php b/src/read_body.php index 1d09812c..99e14d59 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -364,14 +364,13 @@ function formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message, } } -/* BOOKMARK */ $s = ''; foreach ($env as $key => $val) { if ($val) { $s .= ''; - $s .= html_tag('TD', '' . $key . ':  ', 'RIGHT', '', 'VALIGN="MIDDLE" WIDTH="20%"') . "\n"; - $s .= html_tag('TD', $val, 'left', '', 'VALIGN="MIDDLE" WIDTH="80%"') . "\n"; + $s .= html_tag('TD', '' . $key . ':  ', 'RIGHT', '', 'VALIGN="TOP" WIDTH="20%"') . "\n"; + $s .= html_tag('TD', $val, 'left', '', 'VALIGN="TOP" WIDTH="80%"') . "\n"; $s .= ''; } } @@ -518,7 +517,6 @@ function formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color) { $urlMailbox = urlencode($mailbox); $url = $base_uri.'src/view_header.php?'.$QUERY_STRING; -/* BOOKMARK */ $s = "\n"; $s .= '\n"; $s .= '
' . _("Other") . ":  '; -- 2.25.1