summaryrefslogtreecommitdiffstats
path: root/globals.pl
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2001-10-03 16:49:19 +0200
committerjustdave%syndicomm.com <>2001-10-03 16:49:19 +0200
commitd09ce429a585a2919359056f6b8d7f0f1c6ecc9c (patch)
tree057bed7989a4e0a104c81d5b66c20807f395e22d /globals.pl
parentbcb60f70212c02a10a2500e731cd0864379457b6 (diff)
downloadbugzilla-d09ce429a585a2919359056f6b8d7f0f1c6ecc9c.tar.gz
bugzilla-d09ce429a585a2919359056f6b8d7f0f1c6ecc9c.tar.xz
Fix for bug 82809: comments in bugs no longer have &#013; where the linefeeds should be.
Patch by Dave Miller <justdave@syndicomm.com> r= timeless@mac.com (no 2nd review needed)
Diffstat (limited to 'globals.pl')
-rw-r--r--globals.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/globals.pl b/globals.pl
index 6dba9c720..c7f848c8a 100644
--- a/globals.pl
+++ b/globals.pl
@@ -911,7 +911,7 @@ sub quoteUrls {
}
$text = value_quote($text);
- $text =~ s/\&#010;/\n/g;
+ $text =~ s/\&#013;/\n/g;
# Stuff everything back from the array.
for (my $i=0 ; $i<$count ; $i++) {