From: defacer Date: Tue, 3 Aug 2004 07:34:03 +0000 (+0000) Subject: Fix a couple of notices that I just... noticed :-) X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=9c81fc35a934b7c442d20d54957d539569c10fb6;p=moodle.git Fix a couple of notices that I just... noticed :-) --- diff --git a/calendar/lib.php b/calendar/lib.php index e68ca2dc5b..b8a6b3dee8 100644 --- a/calendar/lib.php +++ b/calendar/lib.php @@ -1032,7 +1032,7 @@ function calendar_set_filters(&$courses, &$group, &$user, $courseeventsfrom = NU // For each course... foreach($groupcourses as $courseid) { // If the user is an editing teacher in there, - if(!empty($USER) && isteacheredit($courseid, $USER->id)) { + if(!empty($USER->id) && isteacheredit($courseid, $USER->id)) { // Show events from all groups if(($grouprecords = get_groups($courseid)) !== false) { $grouparray = array_merge($grouparray, array_keys($grouprecords)); @@ -1098,7 +1098,7 @@ function calendar_get_default_courses($ignoreref = false) { } $courses = array(); - if(isadmin($USER->id)) { + if(!empty($USER->id) && isadmin($USER->id)) { $courses = get_records_sql('SELECT id, 1 FROM '.$CFG->prefix.'course'); return $courses; }