diff options
author | bugreport%peshkin.net <> | 2004-08-21 06:49:17 +0200 |
---|---|---|
committer | bugreport%peshkin.net <> | 2004-08-21 06:49:17 +0200 |
commit | 88d26275229b5f52f435130496169766313c87b7 (patch) | |
tree | c71532045500b6e2335b1e5e2512d10b8846551b /colchange.cgi | |
parent | 2f9f28d0bfb1f321d1548844a41aaf2d51789695 (diff) | |
download | bugzilla-88d26275229b5f52f435130496169766313c87b7.tar.gz bugzilla-88d26275229b5f52f435130496169766313c87b7.tar.xz |
Bug 224208 Add a higher level of categorization (.ie departments, locations, etc.)
patch by Albert Ting
r=joel, glob
a=myk
Diffstat (limited to 'colchange.cgi')
-rwxr-xr-x | colchange.cgi | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/colchange.cgi b/colchange.cgi index 8d3ee49da..03d5388bf 100755 --- a/colchange.cgi +++ b/colchange.cgi @@ -47,8 +47,13 @@ my $cgi = Bugzilla->cgi; my @masterlist = ("opendate", "changeddate", "bug_severity", "priority", "rep_platform", "assigned_to", "assigned_to_realname", "reporter", "reporter_realname", "bug_status", - "resolution", "product", "component", "version", "op_sys", - "votes"); + "resolution"); + +if (Param("useclassification")) { + push(@masterlist, "classification"); +} + +push(@masterlist, ("product", "component", "version", "op_sys", "votes")); if (Param("usebugaliases")) { unshift(@masterlist, "alias"); |