diff options
author | Dennis1993 <marvin-wegener@outlook.com> | 2013-08-06 19:17:38 +0200 |
---|---|---|
committer | Dennis1993 <marvin-wegener@outlook.com> | 2013-08-06 19:17:38 +0200 |
commit | 7745ae9dfd2fa66e06874d54eeb85f292b95abb9 (patch) | |
tree | 902ae95af859cb157b9f31fbc3f7eea143d5e04d /program/steps | |
parent | 057af166c886470e2e848da0db5b31ffc011c22d (diff) |
Update compose.inc
Deleted size Attribute for file input
Diffstat (limited to 'program/steps')
-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 c9d8c0b45..246cb88bf 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -1422,7 +1422,7 @@ function rcmail_compose_attachment_form($attrib) $out = html::div($attrib, $OUTPUT->form_tag(array('id' => $attrib['id'].'Frm', 'name' => 'uploadform', 'method' => 'post', 'enctype' => 'multipart/form-data'), - html::div(null, rcmail_compose_attachment_field(array('size' => $attrib['attachmentfieldsize']))) . + html::div(null, rcmail_compose_attachment_field()) . html::div('hint', rcube_label(array('name' => 'maxuploadsize', 'vars' => array('size' => $max_filesize)))) . (get_boolean($attrib['buttons']) ? html::div('buttons', $button->show(rcube_label('close'), array('class' => 'button', 'onclick' => "$('#$attrib[id]').hide()")) . ' ' . |