For the overview report : MDL-14199 "Option to only show / export final grade" fixing a notice warning from the form definition

This commit is contained in:
jamiesensei 2008-05-07 14:01:04 +00:00
parent 994fbaabc9
commit 9b617d9210

View file

@ -18,7 +18,7 @@ class mod_quiz_report_overview_settings extends moodleform {
}
$mform->addElement('select', 'attemptsmode', get_string('show', 'quiz_overview'), $options);
if ($this->_customdata['qmsubselect']){
$mform->addElement('advcheckbox', 'qmfilter', get_string('show', 'quiz_overview'), get_string('optonlygradedattempts', 'quiz_overview'), array(0,1));
$mform->addElement('advcheckbox', 'qmfilter', get_string('show', 'quiz_overview'), get_string('optonlygradedattempts', 'quiz_overview'), null, array(0,1));
}
//-------------------------------------------------------------------------------
$mform->addElement('header', 'general', get_string('preferencesuser', 'quiz_overview'));