| | |
| | | } |
| | | } |
| | | |
| | | $out = $select_from->show($MESSAGE->compose['from']); |
| | | $out = $select_from->show((int)$MESSAGE->compose['from']); |
| | | |
| | | // add signatures to client |
| | | $OUTPUT->set_env('signatures', $a_signatures); |
| | |
| | | rcube_label('normal'), |
| | | rcube_label('high'), |
| | | rcube_label('highest')), |
| | | array(5, 4, 0, 2, 1)); |
| | | array('5', '4', '0', '2', '1')); |
| | | |
| | | if (isset($_POST['_priority'])) |
| | | $sel = $_POST['_priority']; |
| | | else if (intval($MESSAGE->headers->priority) != 3) |
| | | $sel = intval($MESSAGE->headers->priority); |
| | | else if (isset($MESSAGE->headers->priority) && intval($MESSAGE->headers->priority) != 3) |
| | | $sel = $MESSAGE->headers->priority; |
| | | else |
| | | $sel = 0; |
| | | |
| | | $out = $form_start ? "$form_start\n" : ''; |
| | | $out .= $selector->show($sel); |
| | | $out .= $selector->show(strval($sel)); |
| | | $out .= $form_end ? "\n$form_end" : ''; |
| | | |
| | | return $out; |