We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 54f284c + 4b10960 commit 4fc7f29Copy full SHA for 4fc7f29
main/exercise/stats.php
@@ -44,7 +44,9 @@
44
);
45
}
46
$count_students = count($students);
47
-$question_list = $objExercise->get_validated_question_list();
+//$question_list = $objExercise->get_validated_question_list();
48
+$totalQuestions = $objExercise->getQuestionCount(); //Get total of questions
49
+$question_list = $objExercise->getQuestionForTeacher(0, $totalQuestions); // get questions from 0 to total
50
51
$data = [];
52
// Question title # of students who tool it Lowest score Average Highest score Maximum score
0 commit comments