-
Bug
-
Resolution: Duplicate
-
Minor
-
None
-
4.1.4
-
MOODLE_401_STABLE
In https://github.com/moodle/moodle/blob/master/course/classes/output/activity_information.php#L152-L154 we have (lines 140 - 143)
// Overall completion states.
|
$overallcompletion=$this->cmcompletion->get_overall_completion(); |
$data->overallcomplete=$overallcompletion==COMPLETION_COMPLETE;
|
$data->overallincomplete=$overallcompletion==COMPLETION_INCOMPLETE;
|
However, overall completion state can also be COMPLETION_COMPLETE_PASS and COMPLETION_COMPLETE_FAIL
$data->overallcomplete will be set to false in these cases. Which is incorrect imo.
- has a non-specific relationship to
-
MDL-79631 "Passing grade or all available attempts completed" activity condition in Quiz is not working as expected
- Open
-
MDL-75582 Activities with passing grade and only require grade completion (not passing) are displaying the wrong status
- Reopened
-
MDL-76079 Bug with Activity Completion "Receive passing grade"
- Closed