Hey, I've got a platform that basically fails every time it sees an encoded & or other html entity.
i.e. it fails on
But, it does not fail on decimal encoded entities.
i.e.  
My question is...Is there a way to make fck use the decimal encoded values rather than the textual ones?
Thanks in advance.
i.e. it fails on
But, it does not fail on decimal encoded entities.
i.e.  
My question is...Is there a way to make fck use the decimal encoded values rather than the textual ones?
Thanks in advance.

Re: Html encoding
http://docs.fckeditor.net/FCKeditor_2.x ... MLEntities
Re: Html encoding
FCKConfig.ProcessHTMLEntities = true ;
FCKConfig.IncludeLatinEntities = true ;
FCKConfig.IncludeGreekEntities = true ;
And it still changes the   into tags, any other suggestions?
Re: Html encoding
Thanks for your help