1 jlwatt Sep 09, 2007 19:54
3 jlwatt Sep 09, 2007 22:12
Thanks for the response!
I tried that before my post and changed the replace command so it searched for \n and \r and replaced with $NL.
No luck!
4 jlwatt Sep 09, 2007 22:29
It dawned on me after the last post that if I am searching for \n and replacing it with \r\n I could end up with \r\r\n.
So I changed the search at about 2343 to:
$message = str_replace( array( "\n", "\r" ), $NL, $message );
$message = str_replace( "\r\r\n", $NL, $message );
$message = str_replace( "\r\n\n", $NL, $message );
and that seems to have done it!
I hope this will help someone else.
Jenny
5 afwas Sep 09, 2007 23:04
Well done and thanks for reporting back to the forum.
Happy blogging
Did you try in ../blogs/inc/_misc/_misc.funcs.php on line 2280:
Change it to:
Good luck