When I write some angled brackets in WYSIWYG mode and switch to Source view, they are replaced by < or > even though the FCKConfig.HtmlEncodeOutput is false. Why?
I searched the whole source code and replaced every statement, which could do this and it didn't helped.
Any ideas?
I searched the whole source code and replaced every statement, which could do this and it didn't helped.
Any ideas?

Re: Why are ANGLED BRACKETS being converted to &lt; and &
Re: Why are ANGLED BRACKETS being converted to &lt; and &
I understand, but where is it done?
Re: Why are ANGLED BRACKETS being converted to &lt; and &
<script> function onbodyload() { document.getElementById("a1").appendChild(document.createTextNode("A<B")); } </script> <body onload="onbodyload()"> <div id="a1"></div> </body>