mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-09 19:26:53 +02:00
git-svn-id: file:///svn/phpbb/trunk@8283 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@ -57,7 +57,7 @@
|
|||||||
*/
|
*/
|
||||||
window.onload = function()
|
window.onload = function()
|
||||||
{
|
{
|
||||||
for (i = 0; i <= onload_functions.length; i++)
|
for (i = 0; i < onload_functions.length; i++)
|
||||||
{
|
{
|
||||||
eval(onload_functions[i]);
|
eval(onload_functions[i]);
|
||||||
}
|
}
|
||||||
@ -65,7 +65,7 @@
|
|||||||
|
|
||||||
window.onunload = function()
|
window.onunload = function()
|
||||||
{
|
{
|
||||||
for (i = 0; i <= onunload_functions.length; i++)
|
for (i = 0; i < onunload_functions.length; i++)
|
||||||
{
|
{
|
||||||
eval(onunload_functions[i]);
|
eval(onunload_functions[i]);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user