mirror of
https://github.com/moodle/moodle.git
synced 2025-04-14 04:52:36 +02:00
MDL-48750 Lesson: Fix attempt info displayed by course overview block
This commit is contained in:
parent
edbcfbd61f
commit
c1500a8270
@ -284,7 +284,7 @@ function lesson_print_overview($courses, &$htmlarray) {
|
||||
// Attempt information
|
||||
if (has_capability('mod/lesson:manage', context_module::instance($lesson->coursemodule))) {
|
||||
// Number of user attempts
|
||||
$attempts = $DB->count_records('lesson_attempts', array('lessonid'=>$lesson->id));
|
||||
$attempts = $DB->count_records('lesson_grades', array('lessonid' => $lesson->id));
|
||||
$str .= $OUTPUT->box(get_string('xattempts', 'lesson', $attempts), 'info');
|
||||
} else {
|
||||
// Determine if the user has attempted the lesson or not
|
||||
|
Loading…
x
Reference in New Issue
Block a user