diff options
author | lpsolit%gmail.com <> | 2006-02-21 21:08:18 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-02-21 21:08:18 +0000 |
commit | da9ac9431cc959eedef78a5118ac3b4c6fbf7d03 (patch) | |
tree | 840e490e59e6a28c083b31a7281877a74105b997 /show_bug.cgi | |
parent | Documentation patch for bug 41972: add user preferences documentation; patch ... (diff) | |
download | bugzilla-da9ac9431cc959eedef78a5118ac3b4c6fbf7d03.tar.gz bugzilla-da9ac9431cc959eedef78a5118ac3b4c6fbf7d03.tar.bz2 bugzilla-da9ac9431cc959eedef78a5118ac3b4c6fbf7d03.zip |
Bug 287325: Ability to add custom plain-text fields to a Bug - Patch by Myk Melez <myk@mozilla.org> r=mkanat a=justdave
Diffstat (limited to 'show_bug.cgi')
-rwxr-xr-x | show_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/show_bug.cgi b/show_bug.cgi index 4d6819a36..19aa88573 100755 --- a/show_bug.cgi +++ b/show_bug.cgi @@ -108,7 +108,7 @@ $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', +my @fieldlist = (Bugzilla::Bug->fields, 'group', 'long_desc', 'attachment', 'attachmentdata'); my %displayfields; |