From 2a887c5bf4f0bfb6fdf8eb02d1ce80bc3a1155b1 Mon Sep 17 00:00:00 2001 From: doogie <> Date: Sat, 7 Sep 2002 19:59:16 -0800 Subject: [PATCH] [project @ 2002-09-07 20:59:16 by doogie] Remove
after , as the latter implies the former. --- cgi/bugreport.cgi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cgi/bugreport.cgi b/cgi/bugreport.cgi index 78050d1f..3490dffd 100755 --- a/cgi/bugreport.cgi +++ b/cgi/bugreport.cgi @@ -243,7 +243,7 @@ while(my $line = ) { m/^Received: \(at (\S+)\) by (\S+)\;/ || &quit("bad line \`$pl' in state incoming-recv"); $thisheader = "

Message received at ".htmlsanit("$1\@$2") - . ":


\n"; + . ":\n"; $this = ''; $normstate= 'go'; $mail .= $_; @@ -264,16 +264,16 @@ while(my $line = ) { } } elsif ($normstate eq 'recips') { if (m/^-t$/) { - $this = "

Message sent:


\n"; + $this = "

Message sent:

\n"; } else { s/\04/, /g; s/\n$//; - $this = "

Message sent to ".htmlsanit($_).":


\n"; + $this = "

Message sent to ".htmlsanit($_).":

\n"; } $normstate= 'kill-body'; } elsif ($normstate eq 'autocheck') { next if !m/^X-Debian-Bugs(-\w+)?: This is an autoforward from (\S+)/; $normstate= 'autowait'; - $this = "

Message received at $2:


\n"; + $this = "

Message received at $2:

\n"; } elsif ($normstate eq 'autowait') { next if !m/^$/; $normstate= 'go-nox'; -- 2.39.5