diff options
author | myk%mozilla.org <> | 2001-10-11 04:50:02 +0200 |
---|---|---|
committer | myk%mozilla.org <> | 2001-10-11 04:50:02 +0200 |
commit | 3650c35d2fb98aa6507daf9e5080bbfb5dd03747 (patch) | |
tree | d12f314b504c6b000e77ba97df81b1b527be06f3 /long_list.cgi | |
parent | f2378ada13c4bf942cef4f751fbbd3e1e78c94d2 (diff) | |
download | bugzilla-3650c35d2fb98aa6507daf9e5080bbfb5dd03747.tar.gz bugzilla-3650c35d2fb98aa6507daf9e5080bbfb5dd03747.tar.xz |
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
Diffstat (limited to 'long_list.cgi')
-rwxr-xr-x | long_list.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/long_list.cgi b/long_list.cgi index 5623a4e12..36e191c77 100755 --- a/long_list.cgi +++ b/long_list.cgi @@ -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> "; print "<A HREF=\"" . $url . "\">" . html_quote($url) . "</A>\n"; |