From ce8b742beca34bc8f0edf6618283063d1cf16e5a Mon Sep 17 00:00:00 2001
From: ajt <>
Date: Sun, 1 Oct 2000 23:19:00 -0800
Subject: [PATCH] [project @ 2000-10-02 00:19:00 by ajt] Change to use
 temporary common.pl in /debian/home/ajt :(

---
 cgi/bugreport.cgi | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

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: <A HREF=\"" . pkgurl($status{package}) . "\">"
 	    .htmlsanit($status{package})."</A>;\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 .= ";\n<strong>Done:</strong> ".&sani($status{done});
-- 
2.39.5