From: myk%mozilla.org <> Date: Thu, 11 Oct 2001 02:50:02 +0000 (+0000) Subject: Fix for bug 27420: Gives the Component and Target Milestone fields extra space in... X-Git-Tag: bugzilla-2.14.1~93 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3650c35d2fb98aa6507daf9e5080bbfb5dd03747;p=thirdparty%2Fbugzilla.git Fix for bug 27420: Gives the Component and Target Milestone fields extra space in the long list display of bugs. Patch by Randall Whitman . r=justdave@syndicomm.com, no second review needed --- diff --git a/long_list.cgi b/long_list.cgi index 5623a4e124..36e191c77f 100755 --- a/long_list.cgi +++ b/long_list.cgi @@ -104,9 +104,9 @@ foreach my $bug (split(/:/, $::FORM{'buglist'})) { } print "QA Contact: $name\n"; } - print "Component: $component\n"; + print "Component: $component\n"; if (Param("usetargetmilestone")) { - print "Target milestone:$target_milestone\n"; + print "Target Milestone: $target_milestone\n"; } print "URL: "; print "" . html_quote($url) . "\n";