-
Bug
-
Resolution: Fixed
-
Trivial
-
3.0.8
-
None
-
phpBB 3.0.8, MySQL 5.1.34, PHP Version 5.2.14, FireFox 3.6.13, CSE HTML Validator v10.01
Trying to track down another issue I stumbled across this. The following is extracted from rendered code. Source seems to be from Overall_header.html
validator returns: [JavaScript] lint warning: missing semicolon
for the beginning of the function: window.onunload = function()
Seems to be related to the two new functions onload and onunload
<script type="text/javascript">
|
// <![CDATA[
|
var jump_page = 'Enter the page number you wish to go to:';
|
var on_page = '1';
|
var per_page = '';
|
var base_url = '';
|
var style_cookie = 'phpBBstyle';
|
var style_cookie_settings = '; path=/; domain=www2.knob.com';
|
var onload_functions = new Array();
|
var onunload_functions = new Array();
|
|
|
|
/**
|
* Find a member
|
*/
|
function find_username(url)
|
{
|
popup(url, 760, 570, '_usersearch');
|
return false;
|
}
|
|
/**
|
* New function for handling multiple calls to window.onload and window.unload by pentapenguin
|
*/
|
window.onload = function()
|
{
|
for (var i = 0; i < onload_functions.length; i++)
|
{
|
eval(onload_functions[i]);
|
}
|
}
|
|
window.onunload = function()
|
{
|
for (var i = 0; i < onunload_functions.length; i++)
|
{
|
eval(onunload_functions[i]);
|
}
|
}
|
|
// ]]>
|
</script>
|