small formatting fix
authorteepe <teepe@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 14 Jul 2002 11:27:16 +0000 (11:27 +0000)
committerteepe <teepe@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 14 Jul 2002 11:27:16 +0000 (11:27 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3092 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/read_body.php

index 301447178ea210d1e1b3565370243db126164b07..d4c3b5d60129b1978e77373cea431b806f0a874b 100644 (file)
@@ -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) {