diff options
Diffstat (limited to 'modules/upload/upload.module')
-rw-r--r-- | modules/upload/upload.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/upload/upload.module b/modules/upload/upload.module index 411bffebe..f5b42c20e 100644 --- a/modules/upload/upload.module +++ b/modules/upload/upload.module @@ -231,9 +231,9 @@ function upload_form_alter(&$form, $form_state, $form_id) { '#title' => t('File attachments'), '#collapsible' => TRUE, '#collapsed' => empty($node->files), + '#group' => 'additional_settings', + '#attached_js' => array(drupal_get_path('module', 'upload') . '/upload.js'), '#description' => t('Changes made to the attachments are not permanent until you save this post. The first "listed" file will be included in RSS feeds.'), - '#prefix' => '<div class="attachments">', - '#suffix' => '</div>', '#weight' => 30, ); |