From: fidian Date: Thu, 26 Apr 2001 15:04:00 +0000 (+0000) Subject: * This seems to show up better with more space on Subject line X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=20cd8abb478fbbdc78432e1b7d84994b703de2f0;p=squirrelmail.git * This seems to show up better with more space on Subject line * Removed redundant width declarations (only need it for one row, so I picked the header row) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1308 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index a4823676..9f0aa2b2 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -110,13 +110,13 @@ for ($i=1; $i <= count($index_order); $i++) { switch ($index_order[$i]) { case 1: # checkbox - echo " \n"; + echo " \n"; break; case 2: # from - echo " $italic$bold$flag$fontstr$senderName$fontstr_end$flag_end$bold_end$italic_end\n"; + echo " $italic$bold$flag$fontstr$senderName$fontstr_end$flag_end$bold_end$italic_end\n"; break; case 3: # date - echo "
$bold$flag$fontstr".$msg["DATE_STRING"]."$fontstr_end$flag_end$bold_end
\n"; + echo "
$bold$flag$fontstr".$msg["DATE_STRING"]."$fontstr_end$flag_end$bold_end
\n"; break; case 4: # subject echo " $bold"; @@ -127,7 +127,7 @@ break; case 5: # flags $stuff = false; - echo " \n"; + echo " \n"; if (isset($msg['FLAG_ANSWERED']) && $msg['FLAG_ANSWERED'] == true) { echo "A\n"; @@ -150,7 +150,7 @@ echo "\n"; break; case 6: # size - echo " $bold$fontstr".show_readable_size($msg['SIZE'])."$fontstr_end$bold_end\n"; + echo " $bold$fontstr".show_readable_size($msg['SIZE'])."$fontstr_end$bold_end\n"; break; } } @@ -567,9 +567,9 @@ case 2: # from if ($mailbox == $sent_folder) - echo ' '. _("To") .''; + echo ' '. _("To") .''; else - echo ' '. _("From") .''; + echo ' '. _("From") .''; if ($sort == 2) echo " \n"; @@ -581,22 +581,22 @@ break; case 3: # date - echo ' '. _("Date") .''; + echo ' '. _("Date") .''; if ($sort == 0) - echo " \n"; + echo " \n"; elseif ($sort == 1) - echo " \n"; + echo " \n"; elseif ($sort == 6) - echo " \n"; + echo " \n"; elseif ($sort != -1) - echo " \n"; + echo " \n"; echo ''; break; case 4: # subject echo ' '. _("Subject") ."\n"; if ($sort == 4) - echo " \n"; + echo " \n"; elseif ($sort == 5) echo " \n"; elseif ($sort != -1) @@ -604,8 +604,8 @@ echo ""; break; - case 6: # size - echo ' ' . _("Size")."\n"; + case 6: # size + echo ' ' . _("Size")."\n"; break; } }