-
Bug
-
Resolution: Fixed
-
Minor
-
2.3.1
-
MOODLE_23_STABLE
-
MOODLE_23_STABLE
-
Silly typo:
if ($attempt->state == quiz_attempt::FINISHED) {
|
return;
|
}
|
should be
if ($attempt->state != quiz_attempt::FINISHED) {
|
return;
|
}
|