From: Debian BTS Date: Fri, 16 Apr 2010 17:07:39 +0000 (+0000) Subject: merge changes from dla source tree X-Git-Tag: release/2.6.0~418 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=98ad23768495f28b31177c810f3e3d8908330e31;hp=38fed4f2e7bca5934a0dbaa34c7a39c5431112bb;p=debbugs.git merge changes from dla source tree --- diff --git a/cgi/pkgreport.cgi b/cgi/pkgreport.cgi index 1666bbc..b70a5cb 100755 --- a/cgi/pkgreport.cgi +++ b/cgi/pkgreport.cgi @@ -79,7 +79,7 @@ if (exists $param{form_options} and defined $param{form_options}) { for my $incexc (qw(include exclude)) { next unless exists $param{$incexc}; # normalize tag to tags - $param{$incexc} = [map {s/^tag:/tags:/} grep /\S\:\S/, make_list($param{$incexc})]; + $param{$incexc} = [map {s/^tag:/tags:/; $_} grep /\S\:\S/, make_list($param{$incexc})]; } for my $key (keys %package_search_keys) { next unless exists $param{key}; @@ -100,7 +100,7 @@ if (exists $param{form_options} and defined $param{form_options}) { for my $incexc (qw(include exclude)) { next unless exists $param{$incexc}; # normalize tag to tags - $param{$incexc} = [map {s/^tag:/tags:/} make_list($param{$incexc})]; + $param{$incexc} = [map {s/^tag:/tags:/; $_} make_list($param{$incexc})]; }