diff options
author | terry%mozilla.org <> | 2000-01-14 05:25:08 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-01-14 05:25:08 +0100 |
commit | 000687a8129f2d52fae8baf2e535db97eebd4c54 (patch) | |
tree | eb5e9d326889033cf9e7c87685047b43d2df795a /colchange.cgi | |
parent | 58259e7b438a18c7e99b0c93622f97a6b9e4d314 (diff) | |
download | bugzilla-000687a8129f2d52fae8baf2e535db97eebd4c54.tar.gz bugzilla-000687a8129f2d52fae8baf2e535db97eebd4c54.tar.xz |
Allow displaying of a "keywords" column.
Diffstat (limited to 'colchange.cgi')
-rwxr-xr-x | colchange.cgi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/colchange.cgi b/colchange.cgi index 077b0bc29..d3a42fc69 100755 --- a/colchange.cgi +++ b/colchange.cgi @@ -30,6 +30,9 @@ print "Content-type: text/html\n"; # The master list not only says what fields are possible, but what order # they get displayed in. +ConnectToDatabase(); +GetVersionTable(); + my @masterlist = ("opendate", "changeddate", "severity", "priority", "platform", "owner", "reporter", "status", "resolution", "component", "product", "version", "project", "os", "votes"); @@ -43,6 +46,9 @@ if (Param("useqacontact")) { if (Param("usestatuswhiteboard")) { push(@masterlist, "status_whiteboard"); } +if (@::legal_keywords) { + push(@masterlist, "keywords"); +} push(@masterlist, ("summary", "summaryfull")); |