MDL-33577 qtype_multianswer: Fix strict syntax warning.

This commit is contained in:
Tim Hunt 2012-06-07 12:32:41 +01:00
parent 4db061680e
commit b84477000a

View File

@ -279,7 +279,8 @@ class qtype_multianswer_multichoice_inline_renderer
$response, array('' => ''), $inputattributes);
$order = $subq->get_order($qa);
$rightanswer = $subq->answers[$order[reset($subq->get_correct_response())]];
$correctresponses = $subq->get_correct_response();
$rightanswer = $subq->answers[$order[reset($correctresponses)]];
$feedbackpopup = $this->feedback_popup($subq, $matchinganswer->fraction,
$subq->format_text($matchinganswer->feedback, $matchinganswer->feedbackformat,
$qa, 'question', 'answerfeedback', $matchinganswer->id),