Skip to content

Commit

Permalink
MDL-21811 use the un-rounded grade to display the overall feedback in…
Browse files Browse the repository at this point in the history
… the quiz reports.
  • Loading branch information
timhunt committed Feb 17, 2011
1 parent 0af9124 commit db99a96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod/quiz/report/overview/report.php
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ function display($quiz, $cm, $course) {
// Feedback column.
if ($hasfeedback) {
if ($attempt->timefinish) {
$row[] = quiz_report_feedback_for_grade(quiz_rescale_grade($attempt->sumgrades, $quiz), $quiz->id);
$row[] = quiz_report_feedback_for_grade(quiz_rescale_grade($attempt->sumgrades, $quiz, false), $quiz->id);
} else {
$row[] = '-';
}
Expand Down

0 comments on commit db99a96

Please sign in to comment.