Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- in parse.class.php
- find this:
- $message = str_replace("\n", '<br />', $message);
- replace with this:
- $replace = array("\r\n","\n\r","\r","\n");
- $message = str_replace($replace, '<br />', $message);
- it works for board, untested for rss feeds, catalog mode and whatnot
Advertisement
Add Comment
Please, Sign In to add comment