summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authordkl%redhat.com <>2008-01-19 04:30:29 +0100
committerdkl%redhat.com <>2008-01-19 04:30:29 +0100
commit77ae33512f083ed0ad153eb84f0ff1b216824c4f (patch)
treed32547ffeaa3ce2d8beaf07d55144e99b9a3d627 /Bugzilla
parentbe10baab33ce80f6d899a72c7e404e46167cb920 (diff)
downloadbugzilla-77ae33512f083ed0ad153eb84f0ff1b216824c4f.tar.gz
bugzilla-77ae33512f083ed0ad153eb84f0ff1b216824c4f.tar.xz
Bug 412850: Rename the webservice method Bug.get_bugs() to simple Bug.get()
David Lawrence <dkl@redhat.com> r=mkanat
Diffstat (limited to 'Bugzilla')
-rwxr-xr-xBugzilla/WebService/Bug.pm12
1 files changed, 10 insertions, 2 deletions
diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm
index c4361e679..01d5c16eb 100755
--- a/Bugzilla/WebService/Bug.pm
+++ b/Bugzilla/WebService/Bug.pm
@@ -57,11 +57,17 @@ use constant GLOBAL_SELECT_FIELDS => qw(
use constant PRODUCT_SPECIFIC_FIELDS => qw(version target_milestone component);
+######################################################
+# Add aliases here for old method name compatibility #
+######################################################
+
+BEGIN { *get_bugs = \&get }
+
###########
# Methods #
###########
-sub get_bugs {
+sub get {
my ($self, $params) = @_;
my $ids = $params->{ids};
defined $ids || ThrowCodeError('param_required', { param => 'ids' });
@@ -280,7 +286,7 @@ You specified a field that doesn't exist or isn't a drop-down field.
=over
-=item C<get_bugs> B<EXPERIMENTAL>
+=item C<get> B<EXPERIMENTAL>
=over
@@ -288,6 +294,8 @@ You specified a field that doesn't exist or isn't a drop-down field.
Gets information about particular bugs in the database.
+Note: Can also be called as "get_bugs" for compatibilty with Bugzilla 3.0 API.
+
=item B<Params>
=over