Index: livecoverage.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/livecoverage/livecoverage.js,v
retrieving revision 1.1
diff -u -p -r1.1 livecoverage.js
--- livecoverage.js	1 Mar 2009 18:47:57 -0000	1.1
+++ livecoverage.js	3 Mar 2009 15:30:09 -0000
@@ -2,11 +2,13 @@
 if (Drupal.jsEnabled) {
   $(document).ready(function () {
     loadupdates();
-    setInterval("loadupdates()", refresh_rate);
+    setInterval("loadupdates()", Drupal.settings.livecoverage.refresh_rate);
   });
 }
 function loadupdates() {
-  $.get(updatefile, function(txt) {
+  var timestamp = new Date().getTime();
+  uniqueupdatefile = Drupal.settings.livecoverage.updatefile + '?' + timestamp;
+  $.get(uniqueupdatefile, function(txt) {
     $("#entry-list").html(txt)  
   });
 }
