aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-07-20 23:53:11 +0200
committerIgor Wiedler <igor@wiedler.ch>2012-07-21 00:12:37 +0200
commitca43a8947a67642f6d1f211f1f5e030b2526ebe2 (patch)
treeb85344974864f4cdcd053bf79bcdec6bcf50dd43 /phpBB/adm
parent841ea0e494504400c798faa6cc860dd1179e1004 (diff)
downloadforums-ca43a8947a67642f6d1f211f1f5e030b2526ebe2.tar
forums-ca43a8947a67642f6d1f211f1f5e030b2526ebe2.tar.gz
forums-ca43a8947a67642f6d1f211f1f5e030b2526ebe2.tar.bz2
forums-ca43a8947a67642f6d1f211f1f5e030b2526ebe2.tar.xz
forums-ca43a8947a67642f6d1f211f1f5e030b2526ebe2.zip
[ticket/11008] Remove eval() calls to get document[id]
PHPBB3-11008
Diffstat (limited to 'phpBB/adm')
-rw-r--r--phpBB/adm/style/overall_header.html6
1 files changed, 1 insertions, 5 deletions
diff --git a/phpBB/adm/style/overall_header.html b/phpBB/adm/style/overall_header.html
index f79c0318b5..f6d0e1025f 100644
--- a/phpBB/adm/style/overall_header.html
+++ b/phpBB/adm/style/overall_header.html
@@ -62,11 +62,7 @@ function dE(n, s, type)
*/
function marklist(id, name, state)
{
- var parent = document.getElementById(id);
- if (!parent)
- {
- eval('parent = document.' + id);
- }
+ var parent = document.getElementById(id) || document[id];
if (!parent)
{