diff options
| author | orbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2007-08-28 12:20:19 +0000 |
|---|---|---|
| committer | orbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2007-08-28 12:20:19 +0000 |
| commit | 71e5d24f4a84a1db6b8d3507877cd56e9301212b (patch) | |
| tree | d723eb8f1ef29fd80fc61880031274be92eece8a | |
| parent | f9e6cf6a3d7a82a99eea16baae1d4cba1b03622f (diff) | |
fix for watch crawler, see http://forum.yacy-websuche.de/viewtopic.php?p=1771#p1771
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4064 6c8d7289-2bf4-0310-a012-ef5d649a1542
| -rw-r--r-- | htroot/js/WatchCrawler.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/htroot/js/WatchCrawler.js b/htroot/js/WatchCrawler.js index 4805313ab..3ae065ed3 100644 --- a/htroot/js/WatchCrawler.js +++ b/htroot/js/WatchCrawler.js @@ -113,7 +113,8 @@ function handleQueues(){ return; } var queuesResponse = queuesRPC.responseXML; - xml=getFirstChild(queuesResponse); + //xml=getFirstChild(queuesResponse); + xml=getFirstChild(queuesResponse, "queues"); if(queuesResponse != null){ clearTable(document.getElementById("queueTable"), 1); |
