MDL-40009 notes: corrected the form element names passed to setType

This commit is contained in:
Mark Nelson
2013-06-04 18:11:12 +08:00
parent ee2e56ee9e
commit e5c2e2cfab
+2 -2
View File
@@ -24,10 +24,10 @@ class note_edit_form extends moodleform {
$this->add_action_buttons();
$mform->addElement('hidden', 'courseid');
$mform->setType('course', PARAM_INT);
$mform->setType('courseid', PARAM_INT);
$mform->addElement('hidden', 'userid');
$mform->setType('user', PARAM_INT);
$mform->setType('userid', PARAM_INT);
$mform->addElement('hidden', 'id');
$mform->setType('id', PARAM_INT);