mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-30 09:15:15 +02:00
Fixed an error with the event comments
This commit is contained in:
parent
5edfc1afa5
commit
f323ac9bfe
@ -436,8 +436,11 @@ foreach ($result as $event) {
|
||||
|
||||
if (in_array('user_comment',$show_fields)) {
|
||||
$safe_event_user_comment = strip_tags(io_safe_output($event["user_comment"]));
|
||||
$line_breaks = array("\r\n", "\n", "\r");
|
||||
$safe_event_user_comment = str_replace($line_breaks, '<br>', $safe_event_user_comment);
|
||||
$event_user_comments = json_decode($safe_event_user_comment, true);
|
||||
$event_user_comment_str = "";
|
||||
|
||||
if (!empty($event_user_comments)) {
|
||||
$last_key = key(array_slice($event_user_comments, -1, 1, true));
|
||||
$date_format = $config['date_format'];
|
||||
|
Loading…
x
Reference in New Issue
Block a user