Merge branch 'ent-5149-9065-Pandora-manage-create-event-poner-saltos-de-linea' into 'develop'

Added possibility to display comments with line breaks in event detail

See merge request artica/pandorafms!3029
This commit is contained in:
Alejandro Fraguas 2020-02-03 10:34:56 +01:00
commit 12d8dca70e
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;