When i enter text into FCKEditor Editor, FCK adds

tags, as one generally expects.
However, once the node is saved, viewing the resulting content shows the

tags in the browser. This is because the actual html code has been encoded with special chars <p> instead of outputting

Can someone help me resolve this issue before i rip all my hair out?
I have tried
FCKConfig.ProcessHTMLEntities= false ;
but no change in ouput

Comments

UnicornSong’s picture

oops got filtered out...
When i enter text into FCKEditor Editor, FCK adds <p> tags, as one generally expects.
However, once the node is saved, viewing the resulting content shows the <p> tags in the browser. This is because the actual html code has been encoded with special chars &lt;p&gt; instead of outputting <p>, in fact even these special chars are converted to special chars, so the actual result in the source is &amp;lt;p&amp;gt;

Can someone help me resolve this issue before i rip all my hair out?
I have tried
FCKConfig.ProcessHTMLEntities= false ;
but no change in ouput

UnicornSong’s picture

Status: Active » Closed (fixed)

looks like this is a CCK issue, as it is only occurring in my CCK fields

zeta1600’s picture

Did you find a cure for this issue?

zeta1600’s picture

I was able to find out that it was limited to CCK text fields. To fix, I went to manage the field, then configure, and select Filtered html. Hope that helps.