diff options
Diffstat (limited to 'includes/pages')
-rw-r--r-- | includes/pages/user_news.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/pages/user_news.php b/includes/pages/user_news.php index bc07eb6c..61ba970d 100644 --- a/includes/pages/user_news.php +++ b/includes/pages/user_news.php @@ -79,7 +79,7 @@ function user_meetings() */ function news_text($news) { $text = ReplaceSmilies($news['Text']); - $text = preg_replace("@\n[\w]*\n@m", '<br><br>', $text); + $text = preg_replace("/\n\n/m", '<br><br>', $text); return $text; } |