X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=functions%2Fmailbox_display.php;h=d353415a2cee961dc6360a810713cd05b84e7fc6;hp=4229b4989c1ec36746304b063f392b036b296aa5;hb=e1728a7ada03ba597fc2f8a800773cb427a711ce;hpb=5f75494fd15729f94af3122e10802686656418ed;ds=sidebyside diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index 4229b498..d353415a 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -300,7 +300,7 @@ function printMessageInfo($aMsg) { $sSubject = str_replace(' ', ' ', decodeHeader($sSubject)); $subject = processSubject($sSubject, $iIndent); - echo html_tag( 'tr','','','','VALIGN="top"') . "\n"; + echo html_tag( 'tr','','','','valign="top"') . "\n"; if (sizeof($index_order)) { foreach ($index_order as $index_order_part) { @@ -1189,24 +1189,24 @@ function mail_message_listing_beginning ($imapConnection, // display flag buttons only if supported if ($show_flag_buttons && in_array('\\flagged',$aMailbox['PERMANENTFLAGS'], true) ) { - $button_str .= getButton('SUBMIT', 'markUnflagged', _("Unflag")); - $button_str .= getButton('SUBMIT', 'markFlagged', _("Flag")); + $button_str .= getButton('submit', 'markUnflagged', _("Unflag")); + $button_str .= getButton('submit', 'markFlagged', _("Flag")); $button_str .= " \n"; } if (in_array('\\seen',$aMailbox['PERMANENTFLAGS'], true)) { - $button_str .= getButton('SUBMIT', 'markUnread', _("Unread")); - $button_str .= getButton('SUBMIT', 'markRead', _("Read")); + $button_str .= getButton('submit', 'markUnread', _("Unread")); + $button_str .= getButton('submit', 'markRead', _("Read")); $button_str .= " \n"; } - $button_str .= getButton('SUBMIT', 'attache',_("Forward")) . + $button_str .= getButton('submit', 'attache',_("Forward")) . " \n"; if (in_array('\\deleted',$aMailbox['PERMANENTFLAGS'], true)) { - $button_str .= getButton('SUBMIT', 'delete',_("Delete")); + $button_str .= getButton('submit', 'delete',_("Delete")); $button_str .= '' . _("Bypass Trash"); $button_str .= " \n"; } if (!$aMailbox['AUTO_EXPUNGE'] && $aMailbox['RIGHTS'] != 'READ-ONLY') { - $button_str .= getButton('SUBMIT', 'expungeButton',_("Expunge")) .' ' . _("mailbox") . "\n"; + $button_str .= getButton('submit', 'expungeButton',_("Expunge")) .' ' . _("mailbox") . "\n"; $button_str .= ' '; } ?> @@ -1240,7 +1240,7 @@ function mail_message_listing_beginning ($imapConnection,   - +