From e3324f3084fffe7bb1a1480b9bccf9a2cb6c20a1 Mon Sep 17 00:00:00 2001 From: stekkel Date: Wed, 1 May 2002 13:32:31 +0000 Subject: [PATCH] fix in displaying priority git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2790 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mailbox_display.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index e016737b..19f9760f 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -190,11 +190,11 @@ function printMessageInfo($imapConnection, $t, $i, $key, $mailbox, $sort, $stuff = true; } if ($default_use_priority) { - if ( ($msg['PRIORITY'][0] == 1) || ($msg['PRIORITY'][0] == 2) ) { + if ( ($msg['PRIORITY'] == 1) || ($msg['PRIORITY'] == 2) ) { echo "!\n"; $stuff = true; } - if ($msg['PRIORITY'][0] == 5) { + if ($msg['PRIORITY'] == 5) { echo "?\n"; $stuff = true; } @@ -412,8 +412,9 @@ function showMessagesForMailbox($imapConnection, $mailbox, $num_msgs, } $num++; } - $j++; */ + $j++; + } /* -- 2.25.1