From a84bfa356ab168b0b065efeffb32a603970acd13 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Thu, 22 Dec 2011 11:35:38 -0500 Subject: [PATCH] Fix upload form handling --- program/steps/addressbook/edit.inc | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/program/steps/addressbook/edit.inc b/program/steps/addressbook/edit.inc index eb6aa18..c5ca44d 100644 --- a/program/steps/addressbook/edit.inc +++ b/program/steps/addressbook/edit.inc @@ -177,7 +177,7 @@ global $OUTPUT; // set defaults - $attrib += array('id' => 'rcmUploadbox', 'buttons' => 'yes'); + $attrib += array('id' => 'rcmUploadform', 'buttons' => 'yes'); // find max filesize value $max_filesize = parse_bytes(ini_get('upload_max_filesize')); @@ -191,7 +191,7 @@ $button = new html_inputfield(array('type' => 'button')); $out = html::div($attrib, - $OUTPUT->form_tag(array('name' => 'uploadform', 'method' => 'post', 'enctype' => 'multipart/form-data'), + $OUTPUT->form_tag(array('id' => $attrib['id'].'Frm', 'name' => 'uploadform', 'method' => 'post', 'enctype' => 'multipart/form-data'), $hidden->show() . html::div(null, $input->show()) . html::div('hint', rcube_label(array('name' => 'maxuploadsize', 'vars' => array('size' => $max_filesize)))) . @@ -203,7 +203,7 @@ ); $OUTPUT->add_label('addphoto','replacephoto'); - $OUTPUT->add_gui_object('uploadbox', $attrib['id']); + $OUTPUT->add_gui_object('uploadform', $attrib['id'].'Frm'); return $out; } -- Gitblit v1.9.1