Commit 3650c35d authored by myk%mozilla.org's avatar myk%mozilla.org

Fix for bug 27420: Gives the Component and Target Milestone fields extra space…

Fix for bug 27420: Gives the Component and Target Milestone fields extra space in the long list display of bugs. Patch by Randall Whitman <randall.whitman@solipsa.com>. r=justdave@syndicomm.com, no second review needed
parent f2378ada
......@@ -104,9 +104,9 @@ foreach my $bug (split(/:/, $::FORM{'buglist'})) {
}
print "<TD><B>QA Contact:</B> $name\n";
}
print "<TR><TD><B>Component:</B> $component\n";
print "<TR><TD COLSPAN=2><B>Component:</B> $component\n";
if (Param("usetargetmilestone")) {
print "<TD><B>Target milestone:</B>$target_milestone\n";
print "<TD COLSPAN=2><B>Target Milestone:</B> $target_milestone\n";
}
print "<TR><TD COLSPAN=6><B>URL:</B>&nbsp;";
print "<A HREF=\"" . $url . "\">" . html_quote($url) . "</A>\n";
......
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