From d5158890ef7b351516271491dbf84fa52c6dd92c Mon Sep 17 00:00:00 2001 From: teepe Date: Sun, 14 Jul 2002 11:27:16 +0000 Subject: [PATCH] small formatting fix git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3092 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/read_body.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/read_body.php b/src/read_body.php index 30144717..d4c3b5d6 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -1016,15 +1016,14 @@ if ($use_css) { $rb_message_table = new html('table','','','rb_body','',$ar_table); $row_body = new html('tr','','','rb_bd','rb_bdr'); -$col_body = new html('tb',$messagebody,array('br'=>false),'rb_bd','rb_bdr',$ar_row); - -$attachements = formatAttachments($message,$ent_ar,$mailbox, $passed_id); - +$col_body = new html('td',$messagebody,array('br'=>false),'rb_bd','rb_bdr',$ar_row); $row_body->htmlAdd($col_body); +$rb_message_table->htmlAdd($row_body); -$col_body = new html('tb',$attachements,array('br'=>false),'rb_bd','rb_bdr',$ar_row); +$row_body = new html('tr','','','rb_bd','rb_bdr'); +$attachements = formatAttachments($message,$ent_ar,$mailbox, $passed_id); +$col_body = new html('td',$attachements,array('br'=>false),'rb_bd','rb_bdr',$ar_row); $row_body->htmlAdd($col_body); - $rb_message_table->htmlAdd($row_body); if ($use_css) { -- 2.25.1