Commit 5f08c979 authored by gerv%gerv.net's avatar gerv%gerv.net

Bug 144728 - Midair collision doubles line feeds. Patch by jouni@heikniemi.net; 2xr=justdave.

parent afefcd73
......@@ -865,6 +865,9 @@ foreach my $id (@idlist) {
$vars->{'start_at'} = $::FORM{'longdesclength'};
$vars->{'comments'} = GetComments($id);
$::FORM{'comment'} =~ s/\r\n/\n/g; # Get rid of windows-style line endings.
$::FORM{'comment'} =~ s/\r/\n/g; # Get rid of mac-style line endings.
$::FORM{'delta_ts'} = $delta_ts;
$vars->{'form'} = \%::FORM;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment