Skip to content

Commit

Permalink
Display tweaks to table of attempts
Browse files Browse the repository at this point in the history
  • Loading branch information
moodler committed Oct 22, 2002
1 parent e331eb0 commit f31edee
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mod/quiz/report.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
$strattempts = get_string("attempts", "quiz");
$strscore = get_string("score", "quiz");
$strgrade = get_string("grade");
$strbestgrade = get_string("bestgrade", "quiz");
$strtimetaken = get_string("timetaken", "quiz");
$strtimecompleted = get_string("timecompleted", "quiz");

Expand Down Expand Up @@ -152,8 +153,8 @@
exit;
}

$table->head = array("", $strname, $strattempts, $strgrade);
$table->align = array("CENTER", "LEFT", "LEFT", "RIGHT");
$table->head = array("", $strname, $strattempts, $strbestgrade);
$table->align = array("CENTER", "LEFT", "LEFT", "CENTER");
$table->width = array(10, "*", "*", 20);

foreach ($grades as $grade) {
Expand Down

0 comments on commit f31edee

Please sign in to comment.