2 afwas Sep 09, 2007 20:14

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!
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
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