From 2425fc83aa4d0c96e4fce8f20cc9aa064cc1931a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luca=20B=C3=B6sch?= <luca.boesch@bfh.ch> Date: Fri, 11 Oct 2019 11:46:42 +0200 Subject: [PATCH] Support multilang course names. --- classes/local/table/active_processes_table.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/local/table/active_processes_table.php b/classes/local/table/active_processes_table.php index b545f82..1ca2169 100644 --- a/classes/local/table/active_processes_table.php +++ b/classes/local/table/active_processes_table.php @@ -94,7 +94,7 @@ class active_processes_table extends \table_sql { * @return string course link */ public function col_coursefullname($row) { - return \html_writer::link(course_get_url($row->courseid), $row->coursefullname); + return \html_writer::link(course_get_url($row->courseid), format_string($row->coursefullname)); } /** @@ -106,4 +106,4 @@ class active_processes_table extends \table_sql { return $row->instancename; } -} \ No newline at end of file +} -- GitLab