MDL-36357 cleanup - remove double semicolons

This commit is contained in:
Dan Poltawski 2012-11-15 09:51:26 +08:00
parent a3f3ea2684
commit 0e35ba6ffc
53 changed files with 66 additions and 66 deletions

View file

@ -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++;
}

View file

@ -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;
}

View file

@ -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;