summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormmoses <mmoses@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-08-15 14:37:01 +0000
committermmoses <mmoses@208e9e7b-5314-0410-a742-e7e81cd9613c>2006-08-15 14:37:01 +0000
commit22e44bcebaedf1ea36443a2576399e27c64ad2be (patch)
tree21826f77b886346c63180f2037ac5333b15a6f6f
parentaa7e26023f7ea234c940b62840975660f2c1da9b (diff)
Solved bug: 1483828. (Meaning of the numbers isn't changed in my solution)
git-svn-id: https://svn.roundcube.net/trunk@318 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/steps/mail/sendmail.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/sendmail.inc b/roundcubemail/program/steps/mail/sendmail.inc
index ddd180060..30d59dbe3 100644
--- a/roundcubemail/program/steps/mail/sendmail.inc
+++ b/roundcubemail/program/steps/mail/sendmail.inc
@@ -139,7 +139,7 @@ if (!empty($_SESSION['compose']['references']))
if (!empty($_POST['_priority']))
{
$priority = (int)$_POST['_priority'];
- $a_priorities = array(1=>'lowest', 2=>'low', 4=>'high', 5=>'highest');
+ $a_priorities = array(1=>'highest', 2=>'high', 4=>'low', 5=>'lowest');
if ($str_priority = $a_priorities[$priority])
$headers['X-Priority'] = sprintf("%d (%s)", $priority, ucfirst($str_priority));
}