summaryrefslogtreecommitdiffstats
path: root/colchange.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'colchange.cgi')
-rwxr-xr-xcolchange.cgi16
1 files changed, 14 insertions, 2 deletions
diff --git a/colchange.cgi b/colchange.cgi
index bd3b23d6f..33d2dfe70 100755
--- a/colchange.cgi
+++ b/colchange.cgi
@@ -31,8 +31,20 @@ print "Content-type: text/html\n";
my @masterlist = ("opendate", "changeddate", "severity", "priority",
"platform", "owner", "reporter", "status", "resolution",
- "component", "product", "version", "project", "os",
- "summary", "summaryfull");
+ "component", "product", "version", "project", "os");
+
+if (Param("usetargetmilestone")) {
+ push(@masterlist, "target_milestone");
+}
+if (Param("useqacontact")) {
+ push(@masterlist, "qa_contact");
+}
+if (Param("usestatuswhiteboard")) {
+ push(@masterlist, "status_whiteboard");
+}
+
+
+push(@masterlist, ("summary", "summaryfull"));
my @collist;