Scream,
I think I found it!!!!
AND THE WINNER IS...........
In Addpost.php,
replace
// ---------------
// Add break tags
$PrintBody = str_replace("\n","<br>",$PrintBody);
by
// ---------------
// Add break tags
$PrintBody = str_replace("\n","<br>",$PrintBody);
$PrintBody = str_replace("\r","<br>",$PrintBody); //HACK MAC
and
// ---------------
// Add break tags
$Body = str_replace("\r","<br>",$Body);
by
// ---------------
// Add break tags
$Body = str_replace("\n","<br>",$Body);
$Body = str_replace("\r","<br>",$Body); //HACK MAC
Mac uses different line breaks than Unix and PC.
A browser should be able to convert that right, but IE5 obviously doesn't. I tried different special symbols in REgular expressions, and \r dit it...
If you put it in this beta to all occurences of a break-replace, i could try it out here..
I am sure that my code at least will not harm []/forum/images/icons/wink.gif[/]
Last edited by caymuc; 04/21/2002 1:52 PM.