From 5e0efebfc1d555ec3358a01ebef9b6eb97861495 Mon Sep 17 00:00:00 2001 From: stekkel Date: Sun, 6 Oct 2002 18:12:34 +0000 Subject: [PATCH] added small lines between the messages git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3773 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mailbox_display.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index 2f7c41ce..d5c86632 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -149,7 +149,7 @@ function printMessageInfo($imapConnection, $t, $i, $key, $mailbox, $row->class = 'm_r'; $row->id = 'mr'.$t; - + $col = 0; if (sizeof($index_order)){ foreach ($index_order as $index_order_part) { switch ($index_order_part) { @@ -158,6 +158,7 @@ function printMessageInfo($imapConnection, $t, $i, $key, $mailbox, "", 'center', $hlt_color ); + ++$col; break; case 2: /* from */ echo html_tag( 'td', @@ -165,6 +166,7 @@ function printMessageInfo($imapConnection, $t, $i, $key, $mailbox, $fontstr_end . $flag_end . $bold_end . $italic_end, 'left', $hlt_color ); + ++$col; break; case 3: /* date */ echo html_tag( 'td', @@ -173,6 +175,7 @@ function printMessageInfo($imapConnection, $t, $i, $key, $mailbox, 'center', $hlt_color, 'nowrap' ); + ++$col; break; case 4: /* subject */ $td_str = $bold; @@ -194,6 +197,7 @@ function printMessageInfo($imapConnection, $t, $i, $key, $mailbox, } $td_str .= ">$flag$subject$flag_end$bold_end"; echo html_tag( 'td', $td_str, 'left', $hlt_color ); + ++$col; break; case 5: /* flags */ $stuff = false; @@ -230,6 +234,7 @@ function printMessageInfo($imapConnection, $t, $i, $key, $mailbox, 'center', $hlt_color, 'nowrap' ); + ++$col; break; case 6: /* size */ @@ -238,11 +243,13 @@ function printMessageInfo($imapConnection, $t, $i, $key, $mailbox, $fontstr_end . $bold_end, 'right', $hlt_color ); + ++$col; break; } } } - echo "\n"; + echo ''."\n".''."\n"; } function getThreadMessages($imapConnection, $start_msg, $show_num, $num_msgs) { -- 2.25.1