solve problem with autobreaks in news text when building html tables
This commit is contained in:
parent
a1c032642f
commit
a0f70d9819
|
@ -71,6 +71,18 @@ function user_meetings()
|
|||
return $html;
|
||||
}
|
||||
|
||||
/**
|
||||
* Renders the text content of a news entry
|
||||
*
|
||||
* @param array $news
|
||||
* @return string HTML
|
||||
*/
|
||||
function news_text($news) {
|
||||
$text = ReplaceSmilies($news['Text']);
|
||||
$text = str_replace("\n\n", '<br><br>', $text);
|
||||
return $text;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $news
|
||||
* @return string
|
||||
|
@ -84,7 +96,7 @@ function display_news($news)
|
|||
$html .= '<div class="panel-heading">';
|
||||
$html .= '<h3 class="panel-title">' . ($news['Treffen'] == 1 ? '[Meeting] ' : '') . ReplaceSmilies($news['Betreff']) . '</h3>';
|
||||
$html .= '</div>';
|
||||
$html .= '<div class="panel-body">' . ReplaceSmilies(nl2br($news['Text'])) . '</div>';
|
||||
$html .= '<div class="panel-body">' . news_text($news) . '</div>';
|
||||
|
||||
$html .= '<div class="panel-footer text-muted">';
|
||||
if (in_array('admin_news', $privileges)) {
|
||||
|
|
Loading…
Reference in New Issue