From b49beecf63194e42ee167680fa7b091bf70a6b69 Mon Sep 17 00:00:00 2001 From: tjhunt Date: Sun, 19 Nov 2006 21:28:11 +0000 Subject: [PATCH] Fix function arguments. --- mod/quiz/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/quiz/index.php b/mod/quiz/index.php index fe752c6ead8..a956e4ec80f 100644 --- a/mod/quiz/index.php +++ b/mod/quiz/index.php @@ -124,7 +124,7 @@ //If all quiz's attempts have visible results, show bestgrade if (all_attempt_results_visible($quiz, $USER)) { $gradecol = "$bestgrade / $quiz->grade"; - $feedbackcol = quiz_feedback_for_grade($quiz, $bestgrade); + $feedbackcol = quiz_feedback_for_grade($bestgrade, $quiz->id); } } }