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; }