From e2f51ac675340b8bc10ce6d31fc76db425272da7 Mon Sep 17 00:00:00 2001 From: nicolasconnault Date: Thu, 14 Feb 2008 07:26:45 +0000 Subject: [PATCH] MDL-13430 I can only see this issue in the assignment submissions page. Merging from MOODLE_19_STABLE --- mod/assignment/lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/assignment/lib.php b/mod/assignment/lib.php index 70d58f1207..79b790ddbf 100644 --- a/mod/assignment/lib.php +++ b/mod/assignment/lib.php @@ -1273,8 +1273,8 @@ class assignment_base { } } - - $row = array($picture, fullname($auser), $grade, $comment, $studentmodified, $teachermodified, $status, $finalgrade); + $userlink = '' . fullname($auser) . ''; + $row = array($picture, $userlink, $grade, $comment, $studentmodified, $teachermodified, $status, $finalgrade); if ($uses_outcomes) { $row[] = $outcomes; } -- 2.39.5