diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2012-06-11 17:52:34 -0400 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2012-06-11 17:52:34 -0400 |
commit | 0f4ecd6052e8fab2b3348d69ba0c183f754b3f1d (patch) | |
tree | 6d996710f23af4f9a951f3abe23822a0d321134c /template/en/default/account | |
parent | 0bc055bd657900e8ec0ae26e51c6f4ffc176f125 (diff) | |
download | bugs-0f4ecd6052e8fab2b3348d69ba0c183f754b3f1d.tar bugs-0f4ecd6052e8fab2b3348d69ba0c183f754b3f1d.tar.gz bugs-0f4ecd6052e8fab2b3348d69ba0c183f754b3f1d.tar.bz2 bugs-0f4ecd6052e8fab2b3348d69ba0c183f754b3f1d.tar.xz bugs-0f4ecd6052e8fab2b3348d69ba0c183f754b3f1d.zip |
Bug 760034 - Disable all mail button sets the "but not when (overrides above)" row incorrectly
r/a=LpSolit
Diffstat (limited to 'template/en/default/account')
-rw-r--r-- | template/en/default/account/prefs/email.html.tmpl | 2 |
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 328848131..0c016473d 100644 --- a/template/en/default/account/prefs/email.html.tmpl +++ b/template/en/default/account/prefs/email.html.tmpl @@ -32,7 +32,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; |