summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2006-11-15 04:10:52 +0100
committermkanat%bugzilla.org <>2006-11-15 04:10:52 +0100
commit19588703fd07642a4341f283212a9eef70cbd828 (patch)
tree54d42c3c5f46624a661261a2de0856065e820d14 /contrib
parentd57079f4b474151515c6c5d298a3ed559943115e (diff)
downloadbugzilla-19588703fd07642a4341f283212a9eef70cbd828.tar.gz
bugzilla-19588703fd07642a4341f283212a9eef70cbd828.tar.xz
Bug 349256: Make the webservice get_bug into a stable API
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=mbd, a=justdave
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/bz_webservice_demo.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/bz_webservice_demo.pl b/contrib/bz_webservice_demo.pl
index 31ca880a6..19bbcc59e 100755
--- a/contrib/bz_webservice_demo.pl
+++ b/contrib/bz_webservice_demo.pl
@@ -212,7 +212,7 @@ The call will return a C<Bugzilla::Bug> object.
=cut
if ($bug_id) {
- $soapresult = $proxy->call('Bug.get_bug', $bug_id);
+ $soapresult = $proxy->call('Bug.get_bug', { ids => [$bug_id] });
_die_on_fault($soapresult);
$result = $soapresult->result;