mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 17:36:38 +02:00
merging MOODLE_19_QUESTIONS with HEAD
This commit is contained in:
parent
3bee1ead40
commit
271e6decda
47 changed files with 2807 additions and 1546 deletions
|
@ -23,10 +23,12 @@ class question_edit_truefalse_form extends question_edit_form {
|
|||
$mform->addElement('select', 'correctanswer', get_string('correctanswer', 'qtype_truefalse'),
|
||||
array(0 => get_string('false', 'qtype_truefalse'), 1 => get_string('true', 'qtype_truefalse')));
|
||||
|
||||
$mform->addElement('htmleditor', 'feedbacktrue', get_string('feedbacktrue', 'qtype_truefalse'));
|
||||
$mform->addElement('htmleditor', 'feedbacktrue', get_string('feedbacktrue', 'qtype_truefalse'),
|
||||
array('course' => $this->coursefilesid));;
|
||||
$mform->setType('feedbacktrue', PARAM_RAW);
|
||||
|
||||
$mform->addElement('htmleditor', 'feedbackfalse', get_string('feedbackfalse', 'qtype_truefalse'));
|
||||
$mform->addElement('htmleditor', 'feedbackfalse', get_string('feedbackfalse', 'qtype_truefalse'),
|
||||
array('course' => $this->coursefilesid));
|
||||
$mform->setType('feedbackfalse', PARAM_RAW);
|
||||
|
||||
// Fix penalty factor at 1.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue