From: doogie <> Date: Wed, 10 Jul 2002 10:50:48 +0000 (-0800) Subject: [project @ 2002-07-10 03:50:48 by doogie] X-Git-Tag: release/2.6.0~1062 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=07d755a01587ec33c0e2d4eb514b6a462e087c03;p=debbugs.git [project @ 2002-07-10 03:50:48 by doogie] When making a link to the source package, do it with the source of the package, not the package itself. --- diff --git a/cgi/pkgreport.cgi b/cgi/pkgreport.cgi index d2d93399..58f83751 100755 --- a/cgi/pkgreport.cgi +++ b/cgi/pkgreport.cgi @@ -194,7 +194,7 @@ if (defined $pkg || defined $src) { my $stupidperl = ${debbugs::gPackagePages}; printf "

You might like to refer to the %s package page", urlsanit("http://${debbugs::gPackagePages}/$pkg"), htmlsanit("$pkg"); if ($pkgsrc{ $pkg }) { - printf ", or to the source package %s's bug page.

\n", srcurl($pkg), htmlsanit($pkgsrc{$pkg}); + printf ", or to the source package %s's bug page.

\n", srcurl($pkgsrc{$pkg}), htmlsanit($pkgsrc{$pkg}); } else { printf ".\n"; }