diff options
author | thomascube <thomas@roundcube.net> | 2006-05-01 14:47:27 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-05-01 14:47:27 +0000 |
commit | 6204390af16bcf50f82da61a1aefc2ad0c0adf94 (patch) | |
tree | 21db0bbe17472e7517233fbcc92f1f5ad21e455a /program/steps/mail/compose.inc | |
parent | a4bafb40979b578951863cb1ae49c95d4a02cb9b (diff) |
Applied patch for requesting receipts by Salvatore Ansani
Diffstat (limited to 'program/steps/mail/compose.inc')
-rw-r--r-- | program/steps/mail/compose.inc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index d278279d9..b25c3690f 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -567,6 +567,22 @@ function rcmail_priority_selector($attrib) } +function rcmail_receipt_checkbox($attrib) + { + list($form_start, $form_end) = get_form_tags($attrib); + unset($attrib['form']); + + $attrib['name'] = '_receipt'; + $checkbox = new checkbox(array('name' => '_receipt', 'id' => 'receipt', 'value' => 1)); + + $out = $form_start ? "$form_start\n" : ''; + $out .= $checkbox->show(0); + $out .= $form_end ? "\n$form_end" : ''; + + return $out; + } + + function get_form_tags($attrib) { global $CONFIG, $OUTPUT, $JS_OBJECT_NAME, $MESSAGE_FORM, $SESS_HIDDEN_FIELD; |