diff options
author | lpsolit%gmail.com <> | 2005-09-07 21:05:10 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-09-07 21:05:10 +0200 |
commit | 25385f53b2dc79bf807f6fbef2f0f73491f83445 (patch) | |
tree | 96cfb0bf9255432dfb27c6de458caca8e8e3deaa /show_bug.cgi | |
parent | e679c1864efe76002b2b202dfbaa42acbba516a0 (diff) | |
download | bugzilla-25385f53b2dc79bf807f6fbef2f0f73491f83445.tar.gz bugzilla-25385f53b2dc79bf807f6fbef2f0f73491f83445.tar.xz |
Bug 302669 (2nd part): show_bug.cgi?ctype=xml should allow the option of exporting attachment data - Patch by Greg Hendricks <ghendricks@novell.com> r/a=myk
Diffstat (limited to 'show_bug.cgi')
-rwxr-xr-x | show_bug.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/show_bug.cgi b/show_bug.cgi index ddb6b2313..31619800b 100755 --- a/show_bug.cgi +++ b/show_bug.cgi @@ -108,7 +108,8 @@ $vars->{'bug_list'} = \@bug_list; # If no explicit list is defined, we show all fields. We then exclude any # on the exclusion list. This is so you can say e.g. "Everything except # attachments" without listing almost all the fields. -my @fieldlist = (Bugzilla::Bug::fields(), 'group', 'long_desc', 'attachment'); +my @fieldlist = (Bugzilla::Bug::fields(), 'group', 'long_desc', + 'attachment', 'attachmentdata'); my %displayfields; if ($cgi->param("field")) { |