diff options
author | svncommit <devs@roundcube.net> | 2007-02-26 06:51:39 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2007-02-26 06:51:39 +0000 |
commit | e17702395e1aa0fa54eea36817e1150c231d49eb (patch) | |
tree | 5b443b7988130ad290a9d69462a75c7576afb421 /program/steps/mail | |
parent | d16ddb753ff5573279b3eb483dc97d8d16865fd9 (diff) |
fixed check for selected value in value array in rcube_shared::select
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/compose.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index 211f9fbe8..1c2639d9b 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -766,7 +766,7 @@ function rcmail_priority_selector($attrib) rcube_label('highest')), array(5, 4, 0, 2, 1)); - $sel = isset($_POST['_priority']) ? $_POST['_priority'] : rcube_label('normal'); + $sel = isset($_POST['_priority']) ? $_POST['_priority'] : 0; $out = $form_start ? "$form_start\n" : ''; $out .= $selector->show($sel); |