diff options
author | lpsolit%gmail.com <> | 2006-06-18 08:12:35 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-06-18 08:12:35 +0200 |
commit | 0d2869cdc8bf59db57e80e7e3a0c0c377fc0ffb5 (patch) | |
tree | 03ab21ba894bffea01fb977c93b4ede6f553742f /duplicates.cgi | |
parent | d9548f66b0f47af651f8fa62fa69cc7e65df0a60 (diff) | |
download | bugzilla-0d2869cdc8bf59db57e80e7e3a0c0c377fc0ffb5.tar.gz bugzilla-0d2869cdc8bf59db57e80e7e3a0c0c377fc0ffb5.tar.xz |
Bug 338796: Remove get_product_* from globals.pl - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wicked a=justdave
Diffstat (limited to 'duplicates.cgi')
-rwxr-xr-x | duplicates.cgi | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/duplicates.cgi b/duplicates.cgi index 8039e6b1d..2516c9e0a 100755 --- a/duplicates.cgi +++ b/duplicates.cgi @@ -35,6 +35,7 @@ use Bugzilla; use Bugzilla::Search; use Bugzilla::Config qw(:DEFAULT $datadir); use Bugzilla::Constants; +use Bugzilla::Product; my $cgi = Bugzilla->cgi; @@ -86,13 +87,9 @@ my @query_products = $cgi->param('product'); my $sortvisible = formvalue("sortvisible"); my @buglist = (split(/[:,]/, formvalue("bug_id"))); -my $product_id; +# Make sure all products are valid. foreach my $p (@query_products) { - $product_id = get_product_id($p); - if (!$product_id) { - ThrowUserError("invalid_product_name", - { product => $p }); - } + Bugzilla::Product::check_product($p); } # Small backwards-compatibility hack, dated 2002-04-10. |