Added possibility to display comments with line breaks in event detail

This commit is contained in:
alejandro-campos 2020-01-27 13:37:34 +01:00
parent e35edd92b3
commit 5913f815d1
1 changed files with 1 additions and 1 deletions

View File

@ -4719,7 +4719,7 @@ function events_page_comments($event, $ajax=false)
foreach ($comm as $c) {
$data[0] = '<b>'.$c['action'].' by '.$c['id_user'].'</b>';
$data[0] .= '<br><br><i>'.date($config['date_format'], $c['utimestamp']).'</i>';
$data[1] = '<p style="word-break: break-word;">'.$c['comment'].'</p>';
$data[1] = '<p style="word-break: break-word;">'.stripslashes(str_replace(['\n', '\r'], '<br/>', $c['comment'])).'</p>';
$table_comments->data[] = $data;
}
break;