solve problem with autobreaks in news text when building html tables

This commit is contained in:
msquare 2017-12-20 23:40:46 +01:00
parent 9969208be2
commit 2b52d24c59
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}