From 28971da91c046242d031725a406d577baa7b1483 Mon Sep 17 00:00:00 2001 From: orbiter Date: Tue, 12 Dec 2006 02:51:59 +0000 Subject: [PATCH] fix for last commit git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3074 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/js/xml.js | 1 - 1 file changed, 1 deletion(-) diff --git a/htroot/js/xml.js b/htroot/js/xml.js index 7ffd71456..ff43dee05 100644 --- a/htroot/js/xml.js +++ b/htroot/js/xml.js @@ -4,7 +4,6 @@ function removeAllChildren(element){ } child=element.firstChild; while(child!=null){ - removeAllChildren(child); element.removeChild(child); child=element.firstChild; }