diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-06 10:55:31 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-07-06 10:55:31 +0000 |
| commit | 281ed483de292f1d7d3f350a273c402bae1744e6 (patch) | |
| tree | c62e6060d5bba5f2f98111f17d01a254e4c4da67 /phpBB/styles/prosilver/template/simple_header.html | |
| parent | d3468832bb07b535d679b067f2567621721f8769 (diff) | |
| download | forums-281ed483de292f1d7d3f350a273c402bae1744e6.tar forums-281ed483de292f1d7d3f350a273c402bae1744e6.tar.gz forums-281ed483de292f1d7d3f350a273c402bae1744e6.tar.bz2 forums-281ed483de292f1d7d3f350a273c402bae1744e6.tar.xz forums-281ed483de292f1d7d3f350a273c402bae1744e6.zip | |
some fixes. :)
git-svn-id: file:///svn/phpbb/trunk@7836 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/prosilver/template/simple_header.html')
| -rw-r--r-- | phpBB/styles/prosilver/template/simple_header.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/simple_header.html b/phpBB/styles/prosilver/template/simple_header.html index a9f57df354..eaf6e6dd03 100644 --- a/phpBB/styles/prosilver/template/simple_header.html +++ b/phpBB/styles/prosilver/template/simple_header.html @@ -25,7 +25,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]); } @@ -33,7 +33,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]); } |
