As I stated above, it will be fixed in the future. Thanks for the information

. This is the new version of write_button() in inline_moderation.js. Replace this:
Code:
// ###################################################################
// Set the name of the go button
function write_button(avalue)
{
fetch_object("inline_go").value = "Go (" + avalue + ")";
}
With:
Code:
// ###################################################################
// Set the name of the go button
function write_button(avalue)
{
if (thebutton = fetch_object("inline_go"))
{
thebutton.value = "Go (" + avalue + ")";
}
}
That should do the trick, but I have yet to test it on IE.