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
72ce8ddb
Commit
72ce8ddb
authored
Jul 24, 2012
by
Koosha Khajeh Moogahi
Committed by
Dave Lawrence
Jul 24, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 520434 - Inconsistent naming of time fields (creation_time vs time)
r=dkl, a=LpSolit
parent
00bb32b8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
Bug.pm
Bugzilla/WebService/Bug.pm
+10
-0
No files found.
Bugzilla/WebService/Bug.pm
View file @
72ce8ddb
...
...
@@ -297,6 +297,7 @@ sub _translate_comment {
creator
=>
$self
->
type
(
'string'
,
$comment
->
author
->
login
),
author
=>
$self
->
type
(
'string'
,
$comment
->
author
->
login
),
time
=>
$self
->
type
(
'dateTime'
,
$comment
->
creation_ts
),
creation_time
=>
$self
->
type
(
'dateTime'
,
$comment
->
creation_ts
),
is_private
=>
$self
->
type
(
'boolean'
,
$comment
->
is_private
),
text
=>
$self
->
type
(
'string'
,
$comment
->
body_full
),
attachment_id
=>
$self
->
type
(
'int'
,
$attach_id
),
...
...
@@ -1613,6 +1614,13 @@ Bugzillas. (However, this backwards-compatibility will go away in Bugzilla
C<dateTime> The time (in Bugzilla's timezone) that the comment was added.
=item creation_time
C<dateTime> This is exactly same as the C<time> key. Use this field instead of
C<time> for consistency with other methods including L</get> and L</attachments>.
For compatibility, C<time> is still usable. However, please note that C<time>
may be deprecated and removed in a future release.
=item is_private
C<boolean> True if this comment is private (only visible to a certain
...
...
@@ -1654,6 +1662,8 @@ C<creator>.
=item C<count> was added to the return value in Bugzilla B<4.4>.
=item C<creation_time> was added in Bugzilla B<4.4>.
=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