Skip to content

Commit

Permalink
MDL-13430 I can only see this issue in the assignment submissions page.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasconnault committed Feb 14, 2008
1 parent a299103 commit b8d8a34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mod/assignment/lib.php
Expand Up @@ -1165,7 +1165,8 @@ function display_submissions() {

$status = '<div id="up'.$auser->id.'" class="s'.$auser->status.'">'.$button.'</div>';

$row = array($picture, fullname($auser), $grade, $comment, $studentmodified, $teachermodified, $status);
$userlink = '<a href="' . $CFG->wwwroot . '/user/view.php?id=' . $auser->id . '&amp;course=' . $course->id . '">' . fullname($auser) . '</a>';
$row = array($picture, $userlink, $grade, $comment, $studentmodified, $teachermodified, $status);
$table->add_data($row);
}
}
Expand Down

0 comments on commit b8d8a34

Please sign in to comment.