summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-10-23 01:49:29 +0200
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-10-23 01:49:29 +0200
commitac80bc26485a46b4f2dca7013830e89546fa8d3c (patch)
tree0c769d3dcccc0cd4b1401a4171a8751cf7cdfa8e /Bugzilla/Bug.pm
parent8c065446ba365d0899beb1546f396ebba20aa1bc (diff)
downloadbugzilla-ac80bc26485a46b4f2dca7013830e89546fa8d3c.tar.gz
bugzilla-ac80bc26485a46b4f2dca7013830e89546fa8d3c.tar.xz
Bug 578513: Rename cc_accessible and reporter_accessible to is_cc_accessible
and is_reporter_accessible in the WebService. r=timello, a=mkanat
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index b8178b9ce..026244db9 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -258,7 +258,6 @@ use constant MAX_LINE_LENGTH => 254;
# use.)
use constant FIELD_MAP => {
blocks => 'blocked',
- is_confirmed => 'everconfirmed',
cc_accessible => 'cclist_accessible',
commentprivacy => 'comment_is_private',
creation_time => 'creation_ts',
@@ -267,6 +266,9 @@ use constant FIELD_MAP => {
depends_on => 'dependson',
dupe_of => 'dup_id',
id => 'bug_id',
+ is_confirmed => 'everconfirmed',
+ is_cc_accessible => 'cclist_accessible',
+ is_creator_accessible => 'reporter_accessible',
last_change_time => 'delta_ts',
platform => 'rep_platform',
severity => 'bug_severity',