Index: components/file.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/webform/components/file.inc,v
retrieving revision 1.17.2.1
diff -u -r1.17.2.1 file.inc
--- components/file.inc 3 Mar 2010 02:51:31 -0000 1.17.2.1
+++ components/file.inc 10 Mar 2010 03:57:38 -0000
@@ -129,7 +129,7 @@
'#default_value' => $component['extra']['savelocation'],
'#description' => '
' . t('Webform uploads are always saved in the site files directory. You may optionally specify a subfolder to store your files.') . '
',
'#weight' => 3,
- '#element_validate' => array('_webform_edit_file_check_directory', '_webform_edit_file_validate'),
+ '#element_validate' => array('_webform_edit_file_check_directory'),
'#after_build' => array('_webform_edit_file_check_directory'),
);
$form['display']['width'] = array(
@@ -192,18 +192,16 @@
}
function theme_webform_edit_file($form) {
- // Add a little javascript to check all the items in one type.
+ // Add a little JavaScript to check all the items in one type.
$javascript = '
-
+ }
';
- drupal_set_html_head($javascript);
+ drupal_add_js($javascript, 'inline');
// Format the components into a table.
$per_row = 6;