Hi,
The editor shows unnecessary RN characters, like
one line goes here
rn
rn
second line goes here
rn
rn
How can I stop the editor from displaying /r/n characters?????
(please tell me which file to change or how to set up the editor)
Thanks
The editor shows unnecessary RN characters, like
one line goes here
rn
rn
second line goes here
rn
rn
How can I stop the editor from displaying /r/n characters?????
(please tell me which file to change or how to set up the editor)
Thanks

Re: rn and m characters
// FCKeditor fix to remove /r/n for modules that "Preview" editor content function editorfix($value) { // sometimes FCKeditor wants to add \r\n, so replace it with a space // sometimes FCKeditor wants to add <p> </p>, so replace it with nothing $order = array("\\r\\n", "\\n", "\\r", "<p> </p>"); $replace = array(" ", " ", " ", ""); $value = str_replace($order, $replace, $value); return $value; }