From a8fadb3046adf39ef81185b7f7dcdd75085be006 Mon Sep 17 00:00:00 2001 From: james Date: Mon, 14 Apr 2008 00:16:52 +0000 Subject: [PATCH] Fix the scheduler status in IE7 - the http readystate needs to be manually reset. --- admin/judges_scheduler_status.php | 1 + 1 file changed, 1 insertion(+) diff --git a/admin/judges_scheduler_status.php b/admin/judges_scheduler_status.php index 265d1e84..6693d19e 100644 --- a/admin/judges_scheduler_status.php +++ b/admin/judges_scheduler_status.php @@ -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); }