From ca0361863e6e8f8328f068b9ef25b4d55a5f841b Mon Sep 17 00:00:00 2001 From: "terry%netscape.com" <> Date: Thu, 22 Apr 1999 00:45:22 +0000 Subject: Fixed a bug where the long descriptions of bugs had a variety of newline characters at the end, depending on the operating system of the browser that submitted the text. --- post_bug.cgi | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'post_bug.cgi') diff --git a/post_bug.cgi b/post_bug.cgi index 1cff52326..c0102fdbf 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -105,7 +105,12 @@ foreach my $field (@bug_fields) { $query .= SqlQuote($::FORM{$field}) . ",\n"; } -$query .= "now(), " . SqlQuote($::FORM{'comment'}) . " )\n"; +my $comment = $::FORM{'comment'}; +$comment =~ s/\r\n/\n/g; # Get rid of windows-style line endings. +$comment =~ s/\r/\n/g; # Get rid of mac-style line endings. +$comment = trim($comment); + +$query .= "now(), " . SqlQuote($comment) . " )\n"; my %ccids; -- cgit v1.2.3-24-g4f1b