MDL-84145 report_loglive: format event description as plain text.

This commit is contained in:
Paul Holden
2025-02-06 09:44:27 +07:00
committed by Huong Nguyen
parent 86d6a59dc1
commit d3cdeeff2b
+1 -2
View File
@@ -247,8 +247,7 @@ class report_loglive_table_log extends table_sql {
* @return string HTML for the description column
*/
public function col_description($event) {
// Description.
return $event->get_description();
return format_text($event->get_description(), FORMAT_PLAIN);
}
/**