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

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