summaryrefslogtreecommitdiffstats
path: root/colchange.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'colchange.cgi')
-rwxr-xr-xcolchange.cgi9
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");