summaryrefslogtreecommitdiffstats
path: root/bug_form.pl
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-08-30 23:26:09 +0200
committerterry%mozilla.org <>1999-08-30 23:26:09 +0200
commit93a94f6c03229a32e3cd1cff67901d96c7d28990 (patch)
treef377c524a6d74a70a7efab8cd3d05f72f2a09fb0 /bug_form.pl
parent61cbf413b708fcf6990a9e7df6fd79ab15bbb3aa (diff)
downloadbugzilla-93a94f6c03229a32e3cd1cff67901d96c7d28990.tar.gz
bugzilla-93a94f6c03229a32e3cd1cff67901d96c7d28990.tar.xz
Don't spuriously quote newlines in the comment description.
Diffstat (limited to 'bug_form.pl')
-rw-r--r--bug_form.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/bug_form.pl b/bug_form.pl
index 0e7ef80c0..c563daf06 100644
--- a/bug_form.pl
+++ b/bug_form.pl
@@ -92,6 +92,7 @@ sub quoteUrls {
}
$text = value_quote($text);
+ $text =~ s/\&#010;/\n/g;
# Stuff everything back from the array.
for (my $i=0 ; $i<$count ; $i++) {