From: ajt <> Date: Mon, 2 Oct 2000 07:19:00 +0000 (-0800) Subject: [project @ 2000-10-02 00:19:00 by ajt] X-Git-Tag: release/2.6.0~1270 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ce8b742beca34bc8f0edf6618283063d1cf16e5a;p=debbugs.git [project @ 2000-10-02 00:19:00 by ajt] Change to use temporary common.pl in /debian/home/ajt :( --- diff --git a/cgi/bugreport.cgi b/cgi/bugreport.cgi index 2455c0a7..62c5640f 100755 --- a/cgi/bugreport.cgi +++ b/cgi/bugreport.cgi @@ -6,7 +6,8 @@ use strict; use CGI qw/:standard/; require '/usr/lib/debbugs/errorlib'; -require '/usr/lib/debbugs/common.pl'; +#require '/usr/lib/debbugs/common.pl'; +require '/debian/home/ajt/newajbug/common.pl'; require '/etc/debbugs/config'; require '/etc/debbugs/text'; @@ -58,7 +59,7 @@ $indexentry .= $showseverity; $indexentry .= "Package: " .htmlsanit($status{package}).";\n"; -$indexentry .= "Reported by: ".&sani($status{originator})."; "; +$indexentry .= ";Reported by: ".&sani($status{originator}); $indexentry .= ";\nKeywords: ".&sani($status{keywords}) if length($status{keywords}); @@ -75,7 +76,7 @@ my $dummy = `TZ=GMT LANG=C \\ date -d '1 Jan 1970 00:00:00 + $status{date} seconds' \\ '+ %a, %e %b %Y %T %Z'`; chomp($dummy); -$submitted = "dated ".$dummy; +$submitted = ";\ndated ".$dummy; if (length($status{done})) { $indexentry .= ";\nDone: ".&sani($status{done});