If you view the CSV results of a webform that has file attachments, the headers for the file columns (e.g. Filename, Filesize) do not push the subsequent column headings across. Here's an example:

Currently:

+------------+-----------------+
| Field name + Next field name |
+------------+-----------------+-------+
| Name       + Filesize (KB)   | Value |
+------------+-----------------+-------+

Expected result:

+------------+---------------+-----------------+
| Field name +               | Next field name |
+------------+---------------+-----------------+
| Name       + Filesize (KB) | Value           |
+------------+---------------+-----------------+

Apply the attached patch from the webform/components directory.

The patch was created by a colleague.

CommentFileSizeAuthor
webform_components_file_csv.patch600 bytesRowanw

Comments

quicksketch’s picture

Status: Needs review » Fixed

Nice catch. Next time when creating a patch please use the unified format. See http://drupal.org/patch/create for a great explanation of how to make patches for Drupal projects. Applied and will be in the next release. Thanks!

Anonymous’s picture

Status: Fixed » Closed (fixed)