From: Don Armstrong Date: Sat, 9 Aug 2008 14:11:20 +0000 (-0700) Subject: * switch to package_links from htmlizemaintlinks X-Git-Tag: release/2.6.0~488^2~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=66e05cde0a55ceccf9e558473cddb3ba2fec6317;p=debbugs.git * switch to package_links from htmlizemaintlinks --- diff --git a/Debbugs/CGI/Pkgreport.pm b/Debbugs/CGI/Pkgreport.pm index 06946a63..51ebe422 100644 --- a/Debbugs/CGI/Pkgreport.pm +++ b/Debbugs/CGI/Pkgreport.pm @@ -104,10 +104,9 @@ sub generate_package_info{ my $maint = $maintainers->{$srcforpkg}; if (defined $maint) { print {$output} '

'; - print {$output} htmlize_maintlinks(sub { $_[0] == 1 ? "Maintainer for $showpkg is " - : "Maintainers for $showpkg are " - }, - $maint); + print {$output} (($maint =~ /,/)? "Maintainer for $showpkg is " + : "Maintainers for $showpkg are ") . + package_links(maint => $maint); print {$output} ".

\n"; } else {