mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
Fixed some notices
This commit is contained in:
parent
a950790dfd
commit
5f8c3e1f1a
2 changed files with 9 additions and 2 deletions
|
@ -251,8 +251,9 @@ class quiz_default_questiontype {
|
|||
isset($question->recentlyadded) ? $question->recentlyadded : false);
|
||||
|
||||
$this->print_question_formulation_and_controls(
|
||||
$question, $quiz, $readonly, $resultdetails->answers,
|
||||
$resultdetails->correctanswers,
|
||||
$question, $quiz, $readonly,
|
||||
empty($resultdetails) ? false : $resultdetails->answers,
|
||||
empty($resultdetails) ? false : $resultdetails->correctanswers,
|
||||
quiz_qtype_nameprefix($question));
|
||||
|
||||
echo "</td></tr></table>";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue