mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-18 06:21:19 +02:00
some fixes. :)
git-svn-id: file:///svn/phpbb/trunk@7836 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -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]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user