aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/simple_header.html
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2017-01-13 12:00:31 -0800
committerMatt Friedman <maf675@gmail.com>2017-01-13 12:00:31 -0800
commit366e8583c88b6a7719b39af43790ab0c55aeada7 (patch)
tree987583fc0116aa8bf0335585170d0e449a9e465e /phpBB/adm/style/simple_header.html
parent9d7acd189713d3d31a6ac347974e1e88c247d21c (diff)
downloadforums-366e8583c88b6a7719b39af43790ab0c55aeada7.tar
forums-366e8583c88b6a7719b39af43790ab0c55aeada7.tar.gz
forums-366e8583c88b6a7719b39af43790ab0c55aeada7.tar.bz2
forums-366e8583c88b6a7719b39af43790ab0c55aeada7.tar.xz
forums-366e8583c88b6a7719b39af43790ab0c55aeada7.zip
[ticket/15003] Do not check disabled checkboxes with marklist function
PHPBB3-15003
Diffstat (limited to 'phpBB/adm/style/simple_header.html')
-rw-r--r--phpBB/adm/style/simple_header.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/adm/style/simple_header.html b/phpBB/adm/style/simple_header.html
index 9f47b2052b..439645a211 100644
--- a/phpBB/adm/style/simple_header.html
+++ b/phpBB/adm/style/simple_header.html
@@ -66,7 +66,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;
}