Running the upgrade and last edit and it provides this message :-
"in clientscript/vbulletin_menu.js, replace: ???" .. Guess I must have missed something with the initial installation .. where does this go in vbulletin_menu.js
with:
Code:
function GAL_popup(e,value){
var leftpx = fetch_object_posleft(e);
var toppx = fetch_object_postop(e) + e.offsetHeight;
var dest=fetch_object("GALBox");
toppx=toppx-5;
dest.innerHTML=value;
dest.style.left = leftpx + "px";
dest.style.top = toppx + "px";
if ((window.document.body.clientWidth-dest.offsetWidth)<leftpx){
leftpx=window.document.body.clientWidth-dest.offsetWidth;
dest.style.left = leftpx + "px";
}
dest.style.visibility='visible';
}
function GAL_hidepopup(){
fetch_object("GALBox").style.visibility='hidden';
}
// #############################################################################
// another function to handle the different event models of different browsers
// and prevent event bubbling in a lesser way