diff --git a/include/js/jqSOAPClient.js b/include/js/jqSOAPClient.js index dda34a346..f54bc0846 100644 --- a/include/js/jqSOAPClient.js +++ b/include/js/jqSOAPClient.js @@ -150,7 +150,7 @@ var SOAPObject = function(name) { this.name=name; this.attributes=[]; this.children=[]; - this.value=null;v + this.value=null; this.attr=function(name, value){this.attributes.push({"name":name, "value":value});return this;}; this.appendChild=function(obj){this.children.push(obj);return obj;}; this.hasChildren=function(){return (this.children.length > 0)?true:false;};