mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +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
|
@ -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