When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.
yesterday TinyXml in CB has been updated from 2.5.2 to 2.5.3.Today I discovered a bug in TinyXml, it happens with CDATA and escaping of all '<' and '>' I think we should revert to 2.5.2 for now.Other people any ideas/suggestions
bool TiXmlPrinter::Visit( const TiXmlText& text ){ if ( text.CDATA() ) { DoIndent(); buffer += "<![CDATA["; buffer += text.Value(); buffer += "]]>"; DoLineBreak(); } else if ( simpleTextPrint ) { buffer += text.Value();// TIXML_STRING str;// TiXmlBase::EncodeString( text.ValueTStr(), &str );// buffer += str; } else { DoIndent(); buffer += text.Value();// TIXML_STRING str;// TiXmlBase::EncodeString( text.ValueTStr(), &str );// buffer += str; DoLineBreak(); } return true;}
good news, it is probably a false alarm, and all is well.Will do last test and adjust tomorrow
Short : TinyXml 2.5.3 is OK