aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/overall_header.html
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-01-14 14:58:48 +0100
committerMarc Alexander <admin@m-a-styles.de>2017-01-14 14:58:48 +0100
commit8af6df394686ead5959e7985cf7fb270772d058e (patch)
tree987583fc0116aa8bf0335585170d0e449a9e465e /phpBB/adm/style/overall_header.html
parent9d7acd189713d3d31a6ac347974e1e88c247d21c (diff)
parent366e8583c88b6a7719b39af43790ab0c55aeada7 (diff)
downloadforums-8af6df394686ead5959e7985cf7fb270772d058e.tar
forums-8af6df394686ead5959e7985cf7fb270772d058e.tar.gz
forums-8af6df394686ead5959e7985cf7fb270772d058e.tar.bz2
forums-8af6df394686ead5959e7985cf7fb270772d058e.tar.xz
forums-8af6df394686ead5959e7985cf7fb270772d058e.zip
Merge pull request #4641 from VSEphpbb/ticket/15003
[ticket/15003] Do not check disabled checkboxes with marklist function
Diffstat (limited to 'phpBB/adm/style/overall_header.html')
-rw-r--r--phpBB/adm/style/overall_header.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/adm/style/overall_header.html b/phpBB/adm/style/overall_header.html
index d399c680ee..bd8caf1443 100644
--- a/phpBB/adm/style/overall_header.html
+++ b/phpBB/adm/style/overall_header.html
@@ -53,7 +53,7 @@ function marklist(id, name, state)
for (var r = 0; r < rb.length; r++)
{
- if (rb[r].name.substr(0, name.length) == name)
+ if (rb[r].name.substr(0, name.length) == name && rb[r].disabled !== true)
{
rb[r].checked = state;
}