workaround by Dan for bug #6130, fixed some warnings; merged from MOODLE_16_STABLE

This commit is contained in:
skodak 2006-07-17 07:31:22 +00:00
parent 63aea8815d
commit 639835274c
2 changed files with 5 additions and 2 deletions

View file

@ -485,6 +485,9 @@
if($eventtype == 'select') {
$courseid = optional_param('courseid', $SESSION->cal_course_referer, PARAM_INT);
if ($courseid == 0) { // workaround by Dan for bug #6130
$courseid = SITEID;
}
if (!$course = get_record('course', 'id', $courseid)) {
error('Incorrect course ID');
}