MDL-33577 qtype_multianswer: Fix strict syntax warning.
authorTim Hunt <T.J.Hunt@open.ac.uk>
Thu, 7 Jun 2012 11:32:41 +0000 (12:32 +0100)
committerTim Hunt <T.J.Hunt@open.ac.uk>
Thu, 7 Jun 2012 11:32:41 +0000 (12:32 +0100)
question/type/multianswer/renderer.php

index 29c23d6..547a370 100644 (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),