? contributions/.DS_Store
? contributions/modules/.DS_Store
? contributions/modules/webform/.DS_Store
Index: contributions/modules/webform/components/file.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/webform/components/file.inc,v
retrieving revision 1.28
diff -u -p -r1.28 file.inc
--- contributions/modules/webform/components/file.inc	18 Oct 2010 07:21:10 -0000	1.28
+++ contributions/modules/webform/components/file.inc	21 Dec 2010 22:08:49 -0000
@@ -346,8 +346,8 @@ function theme_webform_render_file($vari
   // Add information about the existing file, if any.
   $value = $element['_fid']['#value'] ? $element['_fid']['#value'] : $element['_old']['#value'];
   if ($value && ($file = webform_get_file($value))) {
-    $element['#suffix'] = ' ' . l(t('Download !filename', array('!filename' => webform_file_name($file->uri))), webform_file_url($file->uri)) . (isset($element['#suffix']) ? $element['#suffix'] : '');
-    $element['#description'] = t('Uploading a new file will replace the current file.');
+    $firstchild = array_shift(array_keys($element));
+    $element[$firstchild]['#suffix'] = '<div class="webform-newfile-message">'. t('Uploading a new file will replace the current file.') .'</div><div class="webform-download-file">' . l(t('Download !filename', array('!filename' => webform_file_name($file->uri))), webform_file_url($file->uri)) . (isset($element[$firstchild]['#suffix']) ? $element[$firstchild]['#suffix'] : '') .'</div>';
   }
 
   // Add the required asterisk.
