mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 01:46:45 +02:00
MDL-36357 cleanup - remove double semicolons
This commit is contained in:
parent
a3f3ea2684
commit
0e35ba6ffc
53 changed files with 66 additions and 66 deletions
|
@ -132,7 +132,7 @@ class qformat_xhtml extends qformat_default {
|
|||
$quest_text = $this->repchar( $subquestion->questiontext );
|
||||
$dropdown = html_writer::label(get_string('answer', 'qtype_match', $option+1), 'quest_'.$id.'_'.$option, false, array('class' => 'accesshide'));
|
||||
$dropdown .= html_writer::select($selectoptions, "quest_{$id}_{$option}", '', false, array('id' => "quest_{$id}_{$option}"));
|
||||
$expout .= html_writer::tag('li', $quest_text);;
|
||||
$expout .= html_writer::tag('li', $quest_text);
|
||||
$expout .= $dropdown;
|
||||
$option++;
|
||||
}
|
||||
|
|
|
@ -1150,7 +1150,7 @@ class qtype_calculated extends question_type {
|
|||
}
|
||||
$qtext = $qtext.$str;
|
||||
}
|
||||
$answer->answer = $qtext.$qtextremaining;;
|
||||
$answer->answer = $qtext.$qtextremaining;
|
||||
$comment->stranswers[$key]= $answer->answer;
|
||||
|
||||
}
|
||||
|
|
|
@ -342,7 +342,7 @@ class question_type {
|
|||
if (empty($form->questiontext['text'])) {
|
||||
$question->questiontext = '';
|
||||
} else {
|
||||
$question->questiontext = trim($form->questiontext['text']);;
|
||||
$question->questiontext = trim($form->questiontext['text']);
|
||||
}
|
||||
$question->questiontextformat = !empty($form->questiontext['format']) ?
|
||||
$form->questiontext['format'] : 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue