diff options
author | mkanat%bugzilla.org <> | 2006-11-15 03:10:52 +0000 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-11-15 03:10:52 +0000 |
commit | 19588703fd07642a4341f283212a9eef70cbd828 (patch) | |
tree | 54d42c3c5f46624a661261a2de0856065e820d14 /contrib | |
parent | d57079f4b474151515c6c5d298a3ed559943115e (diff) | |
download | bugs-19588703fd07642a4341f283212a9eef70cbd828.tar bugs-19588703fd07642a4341f283212a9eef70cbd828.tar.gz bugs-19588703fd07642a4341f283212a9eef70cbd828.tar.bz2 bugs-19588703fd07642a4341f283212a9eef70cbd828.tar.xz bugs-19588703fd07642a4341f283212a9eef70cbd828.zip |
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-x | contrib/bz_webservice_demo.pl | 2 |
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; |