diff options
author | lpsolit%gmail.com <> | 2005-08-05 09:14:52 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-08-05 09:14:52 +0200 |
commit | 0892cf1cd12048a9971ccb29f4fcdc60181aa7d9 (patch) | |
tree | f44e8fbd8ec83482d28be1379e778ae01f149948 /template | |
parent | 4d36c161858c12850a0f710c240cbf1b29412a26 (diff) | |
download | bugzilla-0892cf1cd12048a9971ccb29f4fcdc60181aa7d9.tar.gz bugzilla-0892cf1cd12048a9971ccb29f4fcdc60181aa7d9.tar.xz |
Bug 302718: Enable All Mail enables also unchangeable Reporter/Voter checkboxes - Patch by Colin Ogilvie <colin.ogilvie@gmail.com> r=LpSolit a=justdave
Diffstat (limited to 'template')
-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 90cbc7e25..1a0a4b3cf 100644 --- a/template/en/default/account/prefs/email.html.tmpl +++ b/template/en/default/account/prefs/email.html.tmpl @@ -51,7 +51,7 @@ function SetCheckboxes(setting) { for (var count = 0; count < document.userprefsform.elements.length; count++) { var theinput = document.userprefsform.elements[count]; - if (theinput.type == "checkbox") { + if (theinput.type == "checkbox" && !theinput.disabled) { if (theinput.name.match("neg")) { theinput.checked = false; } |