You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 24, 2018. It is now read-only.
What steps will reproduce the problem?
in _parseXMLRPC you return only first child value:
case 'string':
849 if(!typeEL.firstChild)
850 return "";
854 return typeEL.firstChild.nodeValue;
in firefox it truncates the long xmlrpc response. i fixed the issue by changing:
848 case 'string':
849 if(!typeEL.firstChild)
850 return "";
851 var rt = '';
852 for(var child, k=0; child = typeEL.childNodes.item(k); k++)
853 rt += child.nodeValue;
854 return rt;
The text was updated successfully, but these errors were encountered: