David Bott
Mon 24th Dec '01, 11:31am
One of my mods found this and also provided a fix.
There is a Javascript error in the avatar upload page that cases an infinite error loop in Netscape 4.x. The problem is that the function checkCustom is looking for a radio button based on it's ID, however Netscape 4.x does not support this. Simply changing the code to this...
function checkCustom(formname){
formname.avatarid[1].checked=true;
}
will fix the function so that it works in all browsers.
There is a Javascript error in the avatar upload page that cases an infinite error loop in Netscape 4.x. The problem is that the function checkCustom is looking for a radio button based on it's ID, however Netscape 4.x does not support this. Simply changing the code to this...
function checkCustom(formname){
formname.avatarid[1].checked=true;
}
will fix the function so that it works in all browsers.