diff options
author | thomascube <thomas@roundcube.net> | 2008-09-05 10:26:10 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-09-05 10:26:10 +0000 |
commit | 8beee1b56812aeddfaf4a5d8a43f7e9309b073df (patch) | |
tree | a1fddc91cf8cfe5cda290e0da2e61e3aa4d16a08 /program/steps/mail | |
parent | 0c3bde206460bfd710b9b0e406c146e87192a9ff (diff) |
Indicate allowed max. attachment size in compose screen (#1485030)
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/compose.inc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index ba3cc7d3e..62ee14703 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -693,9 +693,11 @@ function rcmail_compose_attachment_form($attrib) $out = html::div($attrib, $OUTPUT->form_tag(array('name' => 'form', 'method' => 'post', 'enctype' => 'multipart/form-data')) . - rcmail_compose_attachment_field(array()) . html::br() . - $button->show(rcube_label('close'), array('onclick' => "document.getElementById('$attrib[id]').style.visibility='hidden'")) . - $button->show(rcube_label('upload'), array('onclick' => JS_OBJECT_NAME . ".command('send-attachment', this.form)")) + html::div(null, rcmail_compose_attachment_field(array())) . + html::div('hint', rcube_label(array('name' => 'maxuploadsize', 'vars' => array('size' => show_bytes(parse_bytes(ini_get('upload_max_filesize'))))))) . + html::div('buttons', + $button->show(rcube_label('close'), array('onclick' => "document.getElementById('$attrib[id]').style.visibility='hidden'")) . ' ' . + $button->show(rcube_label('upload'), array('onclick' => JS_OBJECT_NAME . ".command('send-attachment', this.form)"))) ); |