From: Don Armstrong Date: Sat, 18 Nov 2006 07:42:03 +0000 (-0800) Subject: make sure to include the source of interesting versions X-Git-Tag: release/2.6.0~585^2^2~70 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9fec47a68c31685d64b3f520632d287dba998d53;p=debbugs.git make sure to include the source of interesting versions --- diff --git a/cgi/version.cgi b/cgi/version.cgi index d5ebf285..139260a9 100755 --- a/cgi/version.cgi +++ b/cgi/version.cgi @@ -64,6 +64,7 @@ my @interesting_versions = makesourceversions($cgi_var{package},undef,keys %vers my %sources; @sources{map {m{(.+)/}; $1} @{$cgi_var{found}}} = (1) x @{$cgi_var{found}}; @sources{map {m{(.+)/}; $1} @{$cgi_var{fixed}}} = (1) x @{$cgi_var{fixed}}; +@sources{map {m{(.+)/}; $1} @interesting_versions} = (1) x @interesting_versions; my $version = Debbugs::Versions->new(\&Debbugs::Versions::Dpkg::vercmp); foreach my $source (keys %sources) { my $srchash = substr $source, 0, 1;