From ad2cdcdfb3fb4b3ae336847258ed6b2b55f7aa0f Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Thu, 5 Dec 2013 23:39:34 +0100 Subject: Bug 942599: Documentation about possible_duplicates() lists 'products' as argument instead of 'product' r/a=glob --- Bugzilla/WebService/Bug.pm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Bugzilla') diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm index 7f012160c..8b3f58eb1 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 -- cgit v1.2.3-24-g4f1b