From a8e019f9e24f84345f8843774f21a9c39029c3d6 Mon Sep 17 00:00:00 2001 From: stekkel Date: Wed, 14 Aug 2002 10:08:14 +0000 Subject: [PATCH] more layout updates git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3296 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mailbox_display.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index 5170d5d3..90a644bc 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -697,26 +697,26 @@ function mail_message_listing_beginning ($imapConnection, . html_tag( 'td' ,'' , 'left', $color[0], '' ) . html_tag( 'table' ,'' , '', $color[0], 'border="0" width="100%" cellpadding="0" cellspacing="0"' ) . html_tag( 'tr', - getSmallStringCell(_("Move Selected To:"), 'left') . + getSmallStringCell(_("Move Selected To"), 'left') . getSmallStringCell(_("Transform Selected Messages"), 'right') ) . html_tag( 'tr' ) ."\n" . html_tag( 'td', '', 'left', '', 'valign="middle" nowrap' ); getMbxList($imapConnection); - echo getButton('SUBMIT', 'moveButton',_("Move")) . ' '."\n"; - echo getButton('SUBMIT', 'attache',_("Forward")) . ' '."\n"; + echo getButton('SUBMIT', 'moveButton',_("Move")) . "\n"; + echo getButton('SUBMIT', 'attache',_("Forward")) . "\n"; echo " \n" . html_tag( 'td', '', 'right', '', 'nowrap' ); if (!$auto_expunge) { echo getButton('SUBMIT', 'expungeButton',_("Expunge")) - .' ' . _("mailbox") . ' '."\n"; + .' ' . _("mailbox") . "\n"; } - echo getButton('SUBMIT', 'markRead',_("Read")) ."\n"; - echo getButton('SUBMIT', 'markUnread',_("Unread")) ."\n"; - echo getButton('SUBMIT', 'delete',_("Delete")) .' '."\n"; + echo getButton('SUBMIT', 'markRead',_("Read")); + echo getButton('SUBMIT', 'markUnread',_("Unread")); + echo getButton('SUBMIT', 'delete',_("Delete")) ." \n"; echo ''; echo "\n" . " \n"; @@ -792,7 +792,7 @@ function mail_message_listing_end($num_msgs, $paginator_str, $msg_cnt_str, $colo function printHeader($mailbox, $sort, $color, $showsort=true) { global $index_order; - echo html_tag( 'table' ,'' , '', '', 'border="0" width="100%" cellpadding="1" cellspacing="0"' ); + echo html_tag( 'table' ,'' , '', $color[9], 'border="0" width="100%" cellpadding="1" cellspacing="1"' ); echo html_tag( 'tr' ,'' , 'center', $color[5] ); for ($i=1; $i <= count($index_order); $i++) { switch ($index_order[$i]) { @@ -1218,7 +1218,7 @@ return ''; function getSmallStringCell($string, $align) { return html_tag( 'td', - '' . $string . ':   ', + '' . $string . ':  ', $align, '', 'nowrap' ); -- 2.25.1