Changeset 998 in subversion for trunk/roundcubemail/program/steps/mail/compose.inc
- Timestamp:
- Feb 2, 2008 3:30:01 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/program/steps/mail/compose.inc
r989 r998 737 737 function rcmail_priority_selector($attrib) 738 738 { 739 global $MESSAGE; 740 739 741 list($form_start, $form_end) = get_form_tags($attrib); 740 742 unset($attrib['form']); … … 750 752 array(5, 4, 0, 2, 1)); 751 753 752 $sel = isset($_POST['_priority']) ? $_POST['_priority'] : 0;754 $sel = isset($_POST['_priority']) ? $_POST['_priority'] : intval($MESSAGE['headers']->priority); 753 755 754 756 $out = $form_start ? "$form_start\n" : ''; … … 762 764 function rcmail_receipt_checkbox($attrib) 763 765 { 766 global $MESSAGE; 767 764 768 list($form_start, $form_end) = get_form_tags($attrib); 765 769 unset($attrib['form']); … … 773 777 774 778 $out = $form_start ? "$form_start\n" : ''; 775 $out .= $checkbox->show( 0);779 $out .= $checkbox->show($MESSAGE['headers']->mdn_to ? 1 : 0); 776 780 $out .= $form_end ? "\n$form_end" : ''; 777 781
Note: See TracChangeset
for help on using the changeset viewer.
