From 5a731133e2290045e35d16d6ba411e62d310f1e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Betn=C3=A9r?= Date: Sat, 1 Apr 2006 21:57:53 +0000 Subject: [PATCH] Reverted #41 fix i r906. IE cache issues, now fixed server side by r907 --- admin-root/status.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin-root/status.js b/admin-root/status.js index 4f79c97e..199ef34c 100644 --- a/admin-root/status.js +++ b/admin-root/status.js @@ -3,10 +3,10 @@ Event.observe(window,'load',initStatus); var UPDATE_FREQUENCY = 5000; // number of ms between updates function initStatus(e) { - new Ajax.Request('xml-rpc?method=stats&iefix='+Math.random(),{method: 'get',onComplete:rsStats}); + new Ajax.Request('xml-rpc?method=stats',{method: 'get',onComplete:rsStats}); window.setInterval(function () { - new Ajax.Request('xml-rpc?method=stats&iefix='+Math.random(),{method: 'get',onComplete:rsStats}); + new Ajax.Request('xml-rpc?method=stats',{method: 'get',onComplete:rsStats}); },UPDATE_FREQUENCY); }