mirror of
https://github.com/moodle/moodle.git
synced 2025-08-09 10:56:56 +02:00
Merge branch 'mdl44573-moodle26' of git://github.com/tlock/moodle into MOODLE_26_STABLE
This commit is contained in:
commit
15ca2aede6
1 changed files with 5 additions and 1 deletions
|
@ -695,7 +695,11 @@ class assign_grading_table extends table_sql implements renderable {
|
|||
$outcomes .= $this->output->container($outcome->name . ': ' . $select, 'outcome');
|
||||
} else {
|
||||
$name = $outcome->name . ': ' . $options[$outcome->grades[$row->userid]->grade];
|
||||
$outcomes .= $this->output->container($name, 'outcome');
|
||||
if ($this->is_downloading()) {
|
||||
$outcomes .= $name;
|
||||
} else {
|
||||
$outcomes .= $this->output->container($name, 'outcome');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue