summaryrefslogtreecommitdiffstats
path: root/Bugzilla/WebService
diff options
context:
space:
mode:
authorJeff Fearn <Jeff.Fearn@gmail.com>2015-05-18 06:41:44 +0200
committerByron Jones <glob@mozilla.com>2015-05-18 06:41:44 +0200
commit85152c6f92719d00962a84e6b850081a6b46a2da (patch)
tree1887918cb468af76847184cf18109eb03bd05dba /Bugzilla/WebService
parentf221565c373fda0fbe72dee66a780b44ee514141 (diff)
downloadbugzilla-85152c6f92719d00962a84e6b850081a6b46a2da.tar.gz
bugzilla-85152c6f92719d00962a84e6b850081a6b46a2da.tar.xz
Bug 1162334: email_enabled value inverted in User.update RPC call
Diffstat (limited to 'Bugzilla/WebService')
-rw-r--r--Bugzilla/WebService/User.pm2
1 files changed, 0 insertions, 2 deletions
diff --git a/Bugzilla/WebService/User.pm b/Bugzilla/WebService/User.pm
index 773a7cec3..8948a0195 100644
--- a/Bugzilla/WebService/User.pm
+++ b/Bugzilla/WebService/User.pm
@@ -58,14 +58,12 @@ use constant MAPPED_FIELDS => {
email => 'login',
full_name => 'name',
login_denied_text => 'disabledtext',
- email_enabled => 'disable_mail'
};
use constant MAPPED_RETURNS => {
login_name => 'email',
realname => 'full_name',
disabledtext => 'login_denied_text',
- disable_mail => 'email_enabled'
};
##############