Now it works perfectly since i removed that extra nl2br() call, thanks a bunch Tony! what a relief

thanks thanks thanks!
(for those of you who have the same problem: about line 183 in public_html/lib-common.php theres an unnecessary use of nl2br, it looks like this:
$article->set_var('story_introtext', stripslashes($A['introtext']) . '<br><br>'.nl2br(stripslashes($A['bodytext'])));
but should look like this:
$article->set_var('story_introtext', stripslashes($A['introtext']) . '<br><br>'.stripslashes($A['bodytext']));
I kinda had a feeling it was just a small thing like this