Commit 0f4ecd60 authored by Dave Lawrence's avatar Dave Lawrence

Bug 760034 - Disable all mail button sets the "but not when (overrides above)" row incorrectly

r/a=LpSolit
parent 0bc055bd
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment