]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix for bug 27420: Gives the Component and Target Milestone fields extra space in...
authormyk%mozilla.org <>
Thu, 11 Oct 2001 02:50:02 +0000 (02:50 +0000)
committermyk%mozilla.org <>
Thu, 11 Oct 2001 02:50:02 +0000 (02:50 +0000)
Patch by Randall Whitman <randall.whitman@solipsa.com>.
r=justdave@syndicomm.com, no second review needed

long_list.cgi

index 5623a4e12459817991824101e63c4c4498bd217a..36e191c77f0c02e139bb1de4cf8f610d6fa7a44e 100755 (executable)
@@ -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";