From d96b4ca41799cac483bb17f6d3a2615e37fa878c Mon Sep 17 00:00:00 2001 From: oricn Date: Fri, 30 Jun 2000 19:25:20 +0000 Subject: [PATCH] Fixed a small glitch in my Priority code, also added 2 (high) to the proirity list not just 1 (higest) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@576 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mailbox_display.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index 217a6319..bc0fb56a 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -39,7 +39,7 @@ echo " $italic$bold$flag$senderName$flag_end$bold_end$italic_end\n"; echo "
$bold$flag".$msg["DATE_STRING"]."$flag_end$bold_end
\n"; if ($msg["FLAG_ANSWERED"] == true) echo " A"; - elseif ($msg["PRIORITY"] == 1) echo " !"; + elseif (ereg("(1|2)",substr($msg["PRIORITY"],0,1))) echo " !"; else echo "  "; echo " $bold$flag$subject$flag_end$bold_end\n"; -- 2.25.1