From 37c162053d3f2a537b3e0a369cd9ba08d8d235d9 Mon Sep 17 00:00:00 2001 From: lotus Date: Mon, 22 Jun 2009 11:03:44 +0000 Subject: [PATCH] fix for IE & WatchCrawler (were same names in js and html) git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6114 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/js/WatchCrawler.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htroot/js/WatchCrawler.js b/htroot/js/WatchCrawler.js index a6e5df224..14acb1667 100644 --- a/htroot/js/WatchCrawler.js +++ b/htroot/js/WatchCrawler.js @@ -88,10 +88,10 @@ function handleStatus(){ // traffic output (no bar up to now) traffic = getFirstChild(statusTag, "traffic"); - trafficCrawler = getValue(getFirstChild(traffic, "crawler")); + trafficCrawlerValue = getValue(getFirstChild(traffic, "crawler")); trafCrawlerSpan = document.getElementById("trafficCrawler"); removeAllChildren(trafCrawlerSpan); - trafCrawlerSpan.appendChild(document.createTextNode(Math.round((trafficCrawler) / 1024 / 10.24) / 100)); + trafCrawlerSpan.appendChild(document.createTextNode(Math.round((trafficCrawlerValue) / 1024 / 10.24) / 100)); var wordCacheSize=getValue(getFirstChild(statusTag, "wordCacheSize")); var wordCacheMaxSize=getValue(getFirstChild(statusTag, "wordCacheMaxSize"));