Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
2b18077d
Commit
2b18077d
authored
Aug 09, 2011
by
Frank Becker
Committed by
Max Kanat-Alexander
Aug 09, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 675517: Add "count" to the return value of Bug.comments in the WebService
r=mkanat, a=mkanat
parent
72839930
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
Bug.pm
Bugzilla/WebService/Bug.pm
+8
-0
No files found.
Bugzilla/WebService/Bug.pm
View file @
2b18077d
...
...
@@ -303,6 +303,7 @@ sub _translate_comment {
is_private
=>
$self
->
type
(
'boolean'
,
$comment
->
is_private
),
text
=>
$self
->
type
(
'string'
,
$comment
->
body_full
),
attachment_id
=>
$self
->
type
(
'int'
,
$attach_id
),
count
=>
$self
->
type
(
'int'
,
$comment
->
count
),
};
}
...
...
@@ -1488,6 +1489,11 @@ C<int> The ID of the bug that this comment is on.
C<int> If the comment was made on an attachment, this will be the
ID of that attachment. Otherwise it will be null.
=item count
C<int> The number of the comment local to the bug. The Description is 0,
comments start with 1.
=item text
C<string> The actual text of the comment.
...
...
@@ -1543,6 +1549,8 @@ that id.
=item In Bugzilla B<4.0>, the C<author> return value was renamed to
C<creator>.
=item C<count> was added to the return value in Bugzilla B<5.0>.
=back
=back
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment