-
Bug
-
Resolution: Fixed
-
Minor
-
2.4
-
MOODLE_24_STABLE
-
MOODLE_24_STABLE
-
Following MDL-36638 we have code like
if ($state == question_state::$gradedright)
{ + $icon = 'grade_correct'; }else if ($state == question_state::$gradedpartial)
{ + $icon = 'grade_partiallycorrect'; }else
{ + $icon = 'grade_incorrect'; }this can be simplifed to the equivalent
$icon = 'grade_' . $state->get_feedback_class();
- is a regression caused by
-
MDL-36638 Quiz icon issues
-
- Closed
-