From: Dave Lawrence Date: Tue, 23 Jul 2013 20:26:29 +0000 (-0400) Subject: Bug 896066 - Allow REST WebService API to for GET /product to allow retrieval of... X-Git-Tag: bugzilla-4.5.1~126 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f1ae2270b7e6c95a222c09bbced49402c4637fc;p=thirdparty%2Fbugzilla.git Bug 896066 - Allow REST WebService API to for GET /product to allow retrieval of multiple product objects instead of ids --- diff --git a/Bugzilla/WebService/Product.pm b/Bugzilla/WebService/Product.pm index c028c58453..f5a7f953f6 100644 --- a/Bugzilla/WebService/Product.pm +++ b/Bugzilla/WebService/Product.pm @@ -78,7 +78,6 @@ sub get { my $products = []; if (defined $params->{type}) { my %product_hash; - my $found = 0; foreach my $type (@{ $params->{type} }) { my $result = []; if ($type eq 'accessible') {