Trollio wrote:
Teh, I just noticed in my last post some of those typographical issuesIhad a while ago (before registration).
Should be fixed now.
The guy who does Rich TextEditorhas died, I think...
Or lost interest. Or both. lol
I've never encountered that problem before; how didyouhandle it the last time?
[font size="1"][/font]
I made a slight change to some code in one of the packages orginally. The upgrade appears to have reset it so I went back and edited it again. If you're curious, here are the changes in the Post template.
Before:
[span style="font-family: Verdana;"]MESS_EDITOR = MESS_EDITOR.replace(/\\r\\n/ig,"");
MESS_EDITOR = MESS_EDITOR.replace(/\\n/ig,"");[/span][span style="font-family: Verdana;"][/span]
After:
[span style="font-family: Verdana;"]MESS_EDITOR = MESS_EDITOR.replace(/\\r\\n/ig," ");
MESS_EDITOR = MESS_EDITOR.replace(/\\n/ig," ");[/span][span style="font-family: Verdana;"][/span]
It's a subtle change and it took me a while to find the damn thing again, lol.