From 2edb2386d5bbe2fdb523056004dd9962226cdc5c Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" Date: Fri, 5 Aug 2005 00:16:51 +0000 Subject: [PATCH] Bug 302718: Enable All Mail enables also unchangeable Reporter/Voter checkboxes - Patch by Colin Ogilvie r=LpSolit a=justdave git-svn-id: svn://10.0.0.236/trunk@177150 18797224-902f-48f8-a5cc-f745e15eee43 --- .../bugzilla/template/en/default/account/prefs/email.html.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/template/en/default/account/prefs/email.html.tmpl b/mozilla/webtools/bugzilla/template/en/default/account/prefs/email.html.tmpl index 90cbc7e256c..1a0a4b3cf87 100644 --- a/mozilla/webtools/bugzilla/template/en/default/account/prefs/email.html.tmpl +++ b/mozilla/webtools/bugzilla/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; }