diff options
author | lpsolit%gmail.com <> | 2005-09-03 06:12:07 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-09-03 06:12:07 +0200 |
commit | 6b44875b901ac8d1d7383fed017c973a9f954051 (patch) | |
tree | 0b43db0b62321cc03c91caad4810d4660c2fd56c /duplicates.cgi | |
parent | 3c36f0414886baad1a59db8d0dbd0efd3fec2254 (diff) | |
download | bugzilla-6b44875b901ac8d1d7383fed017c973a9f954051.tar.gz bugzilla-6b44875b901ac8d1d7383fed017c973a9f954051.tar.xz |
Bug 286158: Remove GetSelectableProducts() from globals.pl and use Bugzilla::User::get_selectable_products() instead - Patch by Frédéric Buclin <LpSolit@gmail.com> r=joel,kiko a=justdave
Diffstat (limited to 'duplicates.cgi')
-rwxr-xr-x | duplicates.cgi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/duplicates.cgi b/duplicates.cgi index 2aa0df263..6348748bf 100755 --- a/duplicates.cgi +++ b/duplicates.cgi @@ -265,8 +265,7 @@ $vars->{'openonly'} = $openonly; $vars->{'reverse'} = $reverse; $vars->{'format'} = $cgi->param('format'); $vars->{'query_products'} = \@query_products; -my @selectable_products = GetSelectableProducts(); -$vars->{'products'} = \@selectable_products; +$vars->{'products'} = Bugzilla->user->get_selectable_products; my $format = $template->get_format("reports/duplicates", |