From 885ebb8da2c46ba1c5bfd42bf69159f40f266c68 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Sat, 10 May 2008 10:18:31 -0400
Subject: [PATCH] - added enctype for attachments form (#1485056)

---
 program/steps/mail/compose.inc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc
index d8ade67..676b6b4 100644
--- a/program/steps/mail/compose.inc
+++ b/program/steps/mail/compose.inc
@@ -710,10 +710,10 @@
   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)"))

--
Gitblit v1.9.1