overview

Re: overview

by John White -
Number of replies: 0
Hi,

You might want to edit the php to achieve this.

Use a PHP/HTML editor to open the file: /grade/report/overview/lib.php

In there you find the line:
if ($courses = get_my_courses($this->user->id, 'c.sortorder ASC', 'id, shortname')) {

...change this to:
if ($courses = get_my_courses($this->user->id, 'c.sortorder ASC', 'id, shortname, fullname')) {

Also the line:
$courselink = '<a href="'.$CFG->wwwroot.'/grade/report/user/index.php?id='.$course->id.'">'.$course->shortname.'</a>';

must read...
$courselink = '<a href="'.$CFG->wwwroot.'/grade/report/user/index.php?id='.$course->id.'">'.$course->fullname.'</a>';

This may be sufficient, but I have not tested this suggestion, so you will need to test whether this works for Admin and other users.
...And whether it answers your problem.

Regards,

John