The '>' is not being incoded correct so strings which
includes the CDATA closing bracket ']]>' break the xml
file being return from the browser....
The fix is easy, just encode the '>' character in
xml.js on line 29 as follows:
encodeString: function(v) {
- return '<s>'+v.replace(/&/g,
'&').replace(/</g, '<')+'</s>';
+ return '<s>'+v.replace(/&/g, '&').replace(/</g,
'<').replace(/>/g, '>')+'</s>';
},