Index: trunk/admin/editor/cmseditor/editor/_source/internals/fcktools.js =================================================================== diff -u -r1415 -r1974 --- trunk/admin/editor/cmseditor/editor/_source/internals/fcktools.js (.../fcktools.js) (revision 1415) +++ trunk/admin/editor/cmseditor/editor/_source/internals/fcktools.js (.../fcktools.js) (revision 1974) @@ -137,11 +137,13 @@ FCKTools.HTMLEncode = function( text ) { - text = text.replace( /&/g, "&" ) ; + //text = text.replace( /&/g, "&" ) ; text = text.replace( /"/g, """ ) ; text = text.replace( //g, ">" ) ; text = text.replace( /'/g, "'" ) ; + //text = text.replace( /&lt;/g, "<" ) ; + //text = text.replace( /&qt;/g, "&qt;" ) ; return text ; }