From: terry%mozilla.org <> Date: Mon, 30 Aug 1999 21:26:09 +0000 (+0000) Subject: Don't spuriously quote newlines in the comment description. X-Git-Tag: bugzilla-2.6~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93a94f6c03229a32e3cd1cff67901d96c7d28990;p=thirdparty%2Fbugzilla.git Don't spuriously quote newlines in the comment description. --- diff --git a/bug_form.pl b/bug_form.pl index 0e7ef80c0d..c563daf06c 100644 --- a/bug_form.pl +++ b/bug_form.pl @@ -92,6 +92,7 @@ sub quoteUrls { } $text = value_quote($text); + $text =~ s/\ /\n/g; # Stuff everything back from the array. for (my $i=0 ; $i<$count ; $i++) {