Fix the scheduler status in IE7 - the http readystate needs to be manually reset.

This commit is contained in:
james 2008-04-14 00:16:52 +00:00
parent 73972d676f
commit a8fadb3046

@ -46,6 +46,7 @@ function updateStatus()
document.getElementById('updatestatus').innerHTML="Updating...";
var url="judges_scheduler_status_output.php";
http.open("GET",url,true);
http.readystate=0;
http.onreadystatechange=handleResponse;
http.send(null);
}