mirror of
https://github.com/moodle/moodle.git
synced 2025-03-13 20:26:32 +01:00
Merge branch 'MDL-30186' of git://github.com/timhunt/moodle
This commit is contained in:
commit
2c9073ab2a
@ -344,7 +344,7 @@ abstract class question_edit_form extends moodleform {
|
||||
$mform->setType($feedbackname, PARAM_RAW);
|
||||
|
||||
if ($withshownumpartscorrect && $feedbackname == 'partiallycorrectfeedback') {
|
||||
$mform->addElement('checkbox', 'shownumcorrect',
|
||||
$mform->addElement('advcheckbox', 'shownumcorrect',
|
||||
get_string('options', 'question'),
|
||||
get_string('shownumpartscorrect', 'question'));
|
||||
}
|
||||
@ -361,11 +361,11 @@ abstract class question_edit_form extends moodleform {
|
||||
$repeatedoptions['hint']['type'] = PARAM_RAW;
|
||||
|
||||
if ($withclearwrong) {
|
||||
$repeated[] = $mform->createElement('checkbox', 'hintclearwrong',
|
||||
$repeated[] = $mform->createElement('advcheckbox', 'hintclearwrong',
|
||||
get_string('options', 'question'), get_string('clearwrongparts', 'question'));
|
||||
}
|
||||
if ($withshownumpartscorrect) {
|
||||
$repeated[] = $mform->createElement('checkbox', 'hintshownumcorrect', '',
|
||||
$repeated[] = $mform->createElement('advcheckbox', 'hintshownumcorrect', '',
|
||||
get_string('shownumpartscorrect', 'question'));
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user