From 885ebb8da2c46ba1c5bfd42bf69159f40f266c68 Mon Sep 17 00:00:00 2001 From: alecpl Date: Sat, 10 May 2008 14:18:31 +0000 Subject: - added enctype for attachments form (#1485056) --- program/steps/mail/compose.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'program') diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index d8ade67ad..676b6b4be 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -710,10 +710,10 @@ function rcmail_compose_attachment_form($attrib) if (!$attrib['id']) $attrib['id'] = 'rcmUploadbox'; - $button = new html_inputfield(array('type' => "button", 'class' => "button")); + $button = new html_inputfield(array('type' => 'button', 'class' => 'button')); $out = html::div($attrib, - $OUTPUT->form_tag(array('name' => "form", 'method' => "post")) . + $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)")) -- cgit v1.2.3