mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 09:26:35 +02:00
MDL-47712 question_multianswer: Concat as string
This commit is contained in:
parent
da7f38007e
commit
365377bcb2
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ class qtype_multianswer_renderer extends qtype_renderer {
|
||||||
if ($i > 0) {
|
if ($i > 0) {
|
||||||
$index = $question->places[$i];
|
$index = $question->places[$i];
|
||||||
$token = 'qtypemultianswer' . $i . 'marker';
|
$token = 'qtypemultianswer' . $i . 'marker';
|
||||||
$token = '<span class="nolink">' + $token + '</span>';
|
$token = '<span class="nolink">' . $token . '</span>';
|
||||||
$output .= $token;
|
$output .= $token;
|
||||||
$subquestions[$token] = $this->subquestion($qa, $options, $index,
|
$subquestions[$token] = $this->subquestion($qa, $options, $index,
|
||||||
$question->subquestions[$index]);
|
$question->subquestions[$index]);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue