From 34da670b6fc903e953165ced2285094b25907e4a Mon Sep 17 00:00:00 2001 From: msquare Date: Wed, 20 Dec 2017 23:42:37 +0100 Subject: solve problem with autobreaks in news text when building html tables --- includes/pages/user_news.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/pages/user_news.php') diff --git a/includes/pages/user_news.php b/includes/pages/user_news.php index 61ba970d..28083a08 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\n/m", '

', $text); + $text = preg_replace("/\\n\\n/m", '

', $text); return $text; } -- cgit v1.2.3-54-g00ecf