diff options
author | svncommit <devs@roundcube.net> | 2006-08-15 14:37:01 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2006-08-15 14:37:01 +0000 |
commit | 3287e84c90d53f88a009beaed2836f337f0751f2 (patch) | |
tree | b6593b33d59a8a034a9d88fde47cfe028bfd1542 | |
parent | 1a2c177fa33d60ec17b0c50cc1b03cd6bc40e836 (diff) |
Solved bug: 1483828. (Meaning of the numbers isn't changed in my solution)
-rw-r--r-- | program/steps/mail/sendmail.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc index ddd180060..30d59dbe3 100644 --- a/program/steps/mail/sendmail.inc +++ b/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)); } |