Skip to content

Commit

Permalink
Merge branch 'mdl44573-master' of git://github.com/tlock/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
marinaglancy committed Mar 25, 2014
2 parents c5ff2a7 + 6b7aa83 commit d43556a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mod/assign/gradingtable.php
Expand Up @@ -700,7 +700,11 @@ public function col_outcomes(stdClass $row) {
$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');
}
}
}

Expand Down

0 comments on commit d43556a

Please sign in to comment.