Fixed bug with doubles quotes in comments of events

This commit is contained in:
Tatiana Llorente 2019-11-07 15:25:19 +01:00
parent 2fe5cb3d84
commit 54c6f3965d
2 changed files with 2 additions and 2 deletions

View File

@ -4580,7 +4580,7 @@ function events_page_comments($event, $ajax=false)
continue;
}
$comments_array[] = json_decode(io_safe_output($comm), true);
$comments_array[] = io_safe_output(json_decode($comm, true));
}
} else {
// If comments are not stored in json, the format is old.

View File

@ -5697,7 +5697,7 @@ function ui_print_comments($comments)
continue;
}
$comments_array[] = json_decode(io_safe_output($comm), true);
$comments_array[] = io_safe_output(json_decode($comm, true));
}
}