mirror of
https://github.com/moodle/moodle.git
synced 2025-04-15 05:25:08 +02:00
MDL-20901 fixed input validation
This commit is contained in:
parent
19c795b837
commit
825ac7f8f9
@ -19,6 +19,7 @@
|
||||
<input type="password" name="password" size="20" value="<?php p($password) ?>" />
|
||||
<input type="hidden" name="id" value="<?php p($course->id) ?>" />
|
||||
<input type="hidden" name="enrol" value="manual" />
|
||||
<input type="hidden" name="sesskey" value="<?php echo sesskey() ?>" />
|
||||
<input type="submit" value="<?php print_string("enrolme") ?>" />
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -70,11 +70,11 @@ function print_entry($course) {
|
||||
$PAGE->set_heading($course->fullname);
|
||||
echo $OUTPUT->header();
|
||||
echo '<br />';
|
||||
echo $OUTPUT->confirm(get_string('enrolmentconfirmation'), "enrol.php?id=$course->id&confirm=1", "enrol.php?id=$course->id&cancel=1");
|
||||
echo $OUTPUT->confirm(get_string('enrolmentconfirmation'), "enrol.php?id=$course->id&confirm=1&sesskey=".sesskey(), "enrol.php?id=$course->id&cancel=1");
|
||||
echo $OUTPUT->footer();
|
||||
exit;
|
||||
|
||||
} else if (!empty($_GET['confirm'])) {
|
||||
} else if (!empty($_GET['confirm']) and confirm_sesskey()) {
|
||||
|
||||
if (!enrol_into_course($course, $USER, 'manual')) {
|
||||
print_error('couldnotassignrole');
|
||||
@ -140,7 +140,7 @@ function check_entry($form, $course) {
|
||||
$form->password = '';
|
||||
}
|
||||
|
||||
if (empty($course->password)) {
|
||||
if (empty($course->password) or !confirm_sesskey()) {
|
||||
// do not allow entry when no course password set
|
||||
// automatic login when manual primary, no login when secondary at all!!
|
||||
print_error('invalidenrol');
|
||||
|
Loading…
x
Reference in New Issue
Block a user