From: tjhunt Date: Thu, 17 Aug 2006 17:38:31 +0000 (+0000) Subject: Bug #6277 - Missed function renaming in question/format/multianswer. Merged from... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=eb9189bc2f2d370b1ea1c41ee815e94b6f70e86f;p=moodle.git Bug #6277 - Missed function renaming in question/format/multianswer. Merged from MOODLE_16_STABLE. --- diff --git a/question/format/multianswer/format.php b/question/format/multianswer/format.php index a168cc93d3..c627257f75 100644 --- a/question/format/multianswer/format.php +++ b/question/format/multianswer/format.php @@ -16,14 +16,14 @@ class qformat_multianswer extends qformat_default { } function readquestions($lines) { - /// Parses an array of lines into an array of questions. - /// For this class the method has been simplified as - /// there can never be more than one question for a - /// multianswer import + // Parses an array of lines into an array of questions. + // For this class the method has been simplified as + // there can never be more than one question for a + // multianswer import $questions= array(); - $thequestion= quiz_qtype_multianswer_extract_question - (addslashes(implode('',$lines))); + $thequestion= qtype_multianswer_extract_question( + addslashes(implode('',$lines))); $thequestion->qtype = MULTIANSWER; $thequestion->course = $this->course;