From: Frédéric Buclin Date: Thu, 5 Dec 2013 22:39:34 +0000 (+0100) Subject: Bug 942599: Documentation about possible_duplicates() lists 'products' as argument... X-Git-Tag: bugzilla-4.5.2~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad2cdcdfb3fb4b3ae336847258ed6b2b55f7aa0f;p=thirdparty%2Fbugzilla.git Bug 942599: Documentation about possible_duplicates() lists 'products' as argument instead of 'product' r/a=glob --- diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm index 7f012160ca..8b3f58eb17 100644 --- a/Bugzilla/WebService/Bug.pm +++ b/Bugzilla/WebService/Bug.pm @@ -555,7 +555,7 @@ sub search { } sub possible_duplicates { - my ($self, $params) = validate(@_, 'product'); + my ($self, $params) = validate(@_, 'products'); my $user = Bugzilla->user; Bugzilla->switch_to_shadow_db(); @@ -565,7 +565,7 @@ sub possible_duplicates { { function => 'Bug.possible_duplicates', param => 'summary' }); my @products; - foreach my $name (@{ $params->{'product'} || [] }) { + foreach my $name (@{ $params->{'products'} || [] }) { my $object = $user->can_enter_product($name, THROW_ERROR); push(@products, $object); } @@ -2652,6 +2652,9 @@ search for duplicates. =item Added in Bugzilla B<4.0>. +=item The C parameter has been renamed to C in +Bugzilla B<5.0>. + =back =back