Skip to content

Commit

Permalink
MDL-48629 Quiz: Change separator for matching correct answer feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Beedell committed Oct 14, 2016
1 parent 6a69cda commit fa677bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion question/type/match/renderer.php
Expand Up @@ -140,7 +140,7 @@ public function correct_response(question_attempt $qa) {
if (!isset($choices[$question->get_right_choice_for($stemid)])) { if (!isset($choices[$question->get_right_choice_for($stemid)])) {
continue; continue;
} }
$right[] = $question->make_html_inline($this->format_stem_text($qa, $stemid)) . ' ' . $right[] = $question->make_html_inline($this->format_stem_text($qa, $stemid)) . ' → ' .
$choices[$question->get_right_choice_for($stemid)]; $choices[$question->get_right_choice_for($stemid)];
} }


Expand Down

0 comments on commit fa677bc

Please sign in to comment.