diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-02-14 23:01:02 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-02-14 23:01:02 +0100 |
commit | 4ea558d4c90beab5688aad85cde153650e9c4543 (patch) | |
tree | 3f6e57ece59eb7f844d48fe27e226711c3490ecf /Bugzilla/WebService | |
parent | 6807999cd0554a8e6fffbda58b5a919d5e67097b (diff) | |
download | bugs-4ea558d4c90beab5688aad85cde153650e9c4543.tar bugs-4ea558d4c90beab5688aad85cde153650e9c4543.tar.gz bugs-4ea558d4c90beab5688aad85cde153650e9c4543.tar.bz2 bugs-4ea558d4c90beab5688aad85cde153650e9c4543.tar.xz bugs-4ea558d4c90beab5688aad85cde153650e9c4543.zip |
Bug 727240: The POD for Bug.attachments is wrong about the format of the returned data
r=dkl a=LpSolit
Diffstat (limited to 'Bugzilla/WebService')
-rw-r--r-- | Bugzilla/WebService/Bug.pm | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm index 2cdf9dda0..c00bb9afb 100644 --- a/Bugzilla/WebService/Bug.pm +++ b/Bugzilla/WebService/Bug.pm @@ -1235,19 +1235,14 @@ value looks like this: { bugs => { - 1345 => { - attachments => [ - { (attachment) }, - { (attachment) } - ] - }, - 9874 => { - attachments => [ - { (attachment) }, - { (attachment) } - ] - - }, + 1345 => [ + { (attachment) }, + { (attachment) } + ], + 9874 => [ + { (attachment) }, + { (attachment) } + ], }, attachments => { @@ -1258,9 +1253,8 @@ value looks like this: The attachments of any bugs that you specified in the C<ids> argument in input are returned in C<bugs> on output. C<bugs> is a hash that has integer -bug IDs for keys and contains a single key, C<attachments>. That key points -to an arrayref that contains attachments as a hash. (Fields for attachments -are described below.) +bug IDs for keys and the values are arrayrefs that contain hashes as attachments. +(Fields for attachments are described below.) For any attachments that you specified directly in C<attachment_ids>, they are returned in C<attachments> on output. This is a hash where the attachment |