diff options
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"); |