Open index.php and find
PHP Code:
$lastpmstuff['preview'] = preg_replace("/\[[^\]]*\]/","",$lastpmstuff['message']);
Add the following below it
PHP Code:
$lastpmstuff['preview'] = str_replace(array("\n","\r\n","\r")," ",$lastpmstuff['preview']);
Remain in index.php and find
PHP Code:
$lastpmstuff['preview'] = trim(nl2br(dowordwrap($lastpmstuff['preview'])));
Replace with the following
PHP Code:
$lastpmstuff['preview'] = trim(dowordwrap($lastpmstuff['preview']));