aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template/forum_fn.js
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/styles/prosilver/template/forum_fn.js
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/styles/prosilver/template/forum_fn.js')
-rw-r--r--phpBB/styles/prosilver/template/forum_fn.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/phpBB/styles/prosilver/template/forum_fn.js b/phpBB/styles/prosilver/template/forum_fn.js
index 240fe7e51d..995b4b0ab7 100644
--- a/phpBB/styles/prosilver/template/forum_fn.js
+++ b/phpBB/styles/prosilver/template/forum_fn.js
@@ -42,11 +42,7 @@ function jumpto()
*/
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)
{