From: doogie <>
Date: Sun, 8 Sep 2002 03:59:16 +0000 (-0800)
Subject: [project @ 2002-09-07 20:59:16 by doogie]
X-Git-Tag: release/2.6.0~1052
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2a887c5bf4f0bfb6fdf8eb02d1ce80bc3a1155b1;p=debbugs.git
[project @ 2002-09-07 20:59:16 by doogie]
Remove
after , as the latter implies the former.
---
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';