summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-08-05 09:14:52 +0200
committerlpsolit%gmail.com <>2005-08-05 09:14:52 +0200
commit0892cf1cd12048a9971ccb29f4fcdc60181aa7d9 (patch)
treef44e8fbd8ec83482d28be1379e778ae01f149948 /template
parent4d36c161858c12850a0f710c240cbf1b29412a26 (diff)
downloadbugzilla-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.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 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;
}