Commit ae557155 authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 270263: 'Votes' should not be a column choice if param(usevotes)…

Patch for bug 270263: 'Votes' should not be a column choice if param(usevotes) is not true; patch by Shane H. W. Travis <travis@sedsystems.ca>, r=jouni, a=justdave.
parent 768b7285
......@@ -53,8 +53,11 @@ if (Param("useclassification")) {
push(@masterlist, "classification");
}
push(@masterlist, ("product", "component", "version", "op_sys", "votes"));
push(@masterlist, ("product", "component", "version", "op_sys"));
if (Param("usevotes")) {
push (@masterlist, "votes");
}
if (Param("usebugaliases")) {
unshift(@masterlist, "alias");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment