diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2008-02-01 15:15:45 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2008-02-01 15:15:45 +0000 |
commit | 9fe2b06cacd85ff0363afe092825704026f532fa (patch) | |
tree | 25470481c9a3aa7e0cab7a4c8447ee004ef7af85 /phpBB/styles | |
parent | ae0fb4b070fc689a3639a0864ba1c4f3889d6c91 (diff) | |
download | forums-9fe2b06cacd85ff0363afe092825704026f532fa.tar forums-9fe2b06cacd85ff0363afe092825704026f532fa.tar.gz forums-9fe2b06cacd85ff0363afe092825704026f532fa.tar.bz2 forums-9fe2b06cacd85ff0363afe092825704026f532fa.tar.xz forums-9fe2b06cacd85ff0363afe092825704026f532fa.zip |
Oh well
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8364 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/overall_header.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html index dff22b2420..c0cb7640eb 100644 --- a/phpBB/styles/prosilver/template/overall_header.html +++ b/phpBB/styles/prosilver/template/overall_header.html @@ -57,7 +57,7 @@ */ window.onload = function() { - for (i = 0; i < onload_functions.length; i++) + for (var i = 0; i < onload_functions.length; i++) { eval(onload_functions[i]); } @@ -65,7 +65,7 @@ window.onunload = function() { - for (i = 0; i < onunload_functions.length; i++) + for (var i = 0; i < onunload_functions.length; i++) { eval(onunload_functions[i]); } |