alecpl
2008-05-10 885ebb8da2c46ba1c5bfd42bf69159f40f266c68
- added enctype for attachments form (#1485056)


1 files modified
4 ■■■■ changed files
program/steps/mail/compose.inc 4 ●●●● patch | view | raw | blame | history
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)"))