From: justdave%syndicomm.com <> Date: Wed, 3 Oct 2001 14:49:19 +0000 (+0000) Subject: Fix for bug 82809: comments in bugs no longer have where the linefeeds should be. X-Git-Tag: bugzilla-2.14.1~117 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d09ce429a585a2919359056f6b8d7f0f1c6ecc9c;p=thirdparty%2Fbugzilla.git Fix for bug 82809: comments in bugs no longer have where the linefeeds should be. Patch by Dave Miller r= timeless@mac.com (no 2nd review needed) --- diff --git a/globals.pl b/globals.pl index 6dba9c7204..c7f848c8af 100644 --- a/globals.pl +++ b/globals.pl @@ -911,7 +911,7 @@ sub quoteUrls { } $text = value_quote($text); - $text =~ s/\ /\n/g; + $text =~ s/\ /\n/g; # Stuff everything back from the array. for (my $i=0 ; $i<$count ; $i++) {