summaryrefslogtreecommitdiffstats
path: root/template/en/default/account/prefs
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-06-11 23:54:46 +0200
committerDave Lawrence <dlawrence@mozilla.com>2012-06-11 23:54:46 +0200
commitba37aef75a5f754a735649704ff40a81780daf16 (patch)
treed1d1b5bd3a1110097d579a97942133cc28c9de33 /template/en/default/account/prefs
parent092ac85c8f570100c9fe4a7d44fa393e4954fa90 (diff)
downloadbugzilla-ba37aef75a5f754a735649704ff40a81780daf16.tar.gz
bugzilla-ba37aef75a5f754a735649704ff40a81780daf16.tar.xz
Bug 760034 - Disable all mail button sets the "but not when (overrides above)" row incorrectly
r=LpSolit
Diffstat (limited to 'template/en/default/account/prefs')
-rw-r--r--template/en/default/account/prefs/email.html.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/account/prefs/email.html.tmpl b/template/en/default/account/prefs/email.html.tmpl
index 4f08d51ce..32d52fd8e 100644
--- a/template/en/default/account/prefs/email.html.tmpl
+++ b/template/en/default/account/prefs/email.html.tmpl
@@ -48,7 +48,7 @@ function SetCheckboxes(setting) {
var theinput = document.userprefsform.elements[count];
if (theinput.type == "checkbox" && !theinput.disabled) {
if (theinput.name.match("neg")) {
- theinput.checked = false;
+ theinput.checked = !setting;
}
else {
theinput.checked = setting;