From 55103ededbbb533dfe65f38c90eb39874584b35c Mon Sep 17 00:00:00 2001 From: tokul Date: Mon, 12 Apr 2004 08:07:42 +0000 Subject: [PATCH] using png images instead of gifs git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7101 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 33aa3049..6992e790 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -282,26 +282,26 @@ function printMessageInfo($imapConnection, $t, $not_last=true, $key, $mailbox, if ($use_icons && $icon_theme != 'none') { $td_str = ""; if (isset($msg['FLAG_FLAGGED']) && $msg['FLAG_FLAGGED'] == true) { - $td_str .= ' '; + $td_str .= ' '; } if ($default_use_priority) { if ( ($msg['PRIORITY'] == 1) || ($msg['PRIORITY'] == 2) ) { - $td_str .= ' '; + $td_str .= ' '; } else if ($msg['PRIORITY'] == 5) { - $td_str .= ' '; + $td_str .= ' '; } else { - $td_str .= ' '; + $td_str .= ' '; } } if ($msg['TYPE0'] == 'multipart') { - $td_str .= ''; + $td_str .= ''; } else { - $td_str .= ''; + $td_str .= ''; } $msg_icon = ''; @@ -327,7 +327,7 @@ function printMessageInfo($imapConnection, $t, $not_last=true, $key, $mailbox, $msg_title = '(' . _("Answered") . ')'; $msg_icon .= '_reply'; } - $td_str .= ''. $msg_alt . ''; + $td_str .= ''. $msg_alt . ''; $td_str .= ''; echo html_tag( 'td', $td_str, @@ -387,8 +387,8 @@ function printMessageInfo($imapConnection, $t, $not_last=true, $key, $mailbox, } } if ($not_last) { - echo '' . "\n" . '' . "\n"; + echo '' . "\n" . '' . "\n"; } else { echo ''."\n"; } -- 2.25.1