From: cjwatson <>
Date: Wed, 23 Apr 2003 19:10:57 +0000 (-0800)
Subject: [project @ 2003-04-23 12:10:57 by cjwatson]
X-Git-Tag: release/2.6.0~929
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8c94704a9718d46bd484fd8b72c23807ccc468cc;p=debbugs.git

[project @ 2003-04-23 12:10:57 by cjwatson]
Get rid of double space when doing non-archived pkgindex (see pkgreport.cgi
revision 1.31).
---

diff --git a/cgi/pkgindex.cgi b/cgi/pkgindex.cgi
index 6f695ee2..88f875f1 100755
--- a/cgi/pkgindex.cgi
+++ b/cgi/pkgindex.cgi
@@ -30,7 +30,7 @@ if ($sortby !~ m/^(alpha|count)$/) {
 #my $include = $param{'include'} || "";
 #my $exclude = $param{'exclude'} || "";
 
-my $Archived = $archive ? "Archived" : "";
+my $Archived = $archive ? " Archived" : "";
 
 my %maintainers = %{&getmaintainers()};
 my %strings = ();
@@ -124,11 +124,11 @@ print "Content-Type: text/html\n\n";
 
 print "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n";
 print "<HTML><HEAD>\n" . 
-    "<TITLE>$debbugs::gProject $Archived $debbugs::gBug reports by $tag</TITLE>\n" .
+    "<TITLE>$debbugs::gProject$Archived $debbugs::gBug reports by $tag</TITLE>\n" .
     "</HEAD>\n" .
     '<BODY TEXT="#000000" BGCOLOR="#FFFFFF" LINK="#0000FF" VLINK="#800080">' .
     "\n";
-print "<H1>" . "$debbugs::gProject $Archived $debbugs::gBug report logs by $tag" .
+print "<H1>" . "$debbugs::gProject$Archived $debbugs::gBug report logs by $tag" .
       "</H1>\n";
 
 print $note;