diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-01 21:55:31 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-11-01 21:55:31 +0000 |
commit | 45c7f0c02eefc05172b4c909e1cc1dd0507819c6 (patch) | |
tree | 0db4212e34378b54ecd09600bc7020df196310f5 | |
parent | 1eae549bd6fd9bcc134d139f4dec9275db82a31e (diff) | |
download | brdo-45c7f0c02eefc05172b4c909e1cc1dd0507819c6.tar.gz brdo-45c7f0c02eefc05172b4c909e1cc1dd0507819c6.tar.bz2 |
#612396 by jim0203 and dman: Fixed Notice: Undefined index: process_input() in _form_builder_handle_input_element().
-rw-r--r-- | modules/upload/upload.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/upload/upload.module b/modules/upload/upload.module index 77296914d..44a3a03a6 100644 --- a/modules/upload/upload.module +++ b/modules/upload/upload.module @@ -692,7 +692,7 @@ function upload_js() { '#tree' => FALSE, '#parents' => array(), ); - $form_state = array('submitted' => FALSE, 'programmed' => FALSE); + $form_state = array('submitted' => FALSE, 'programmed' => FALSE, 'process_input' => FALSE, 'complete form' => FALSE); $form_id = 'upload_js'; drupal_alter('form', $form, $form_state, $form_id); $form = form_builder('upload_js', $form, $form_state); |