From 9c81fc35a934b7c442d20d54957d539569c10fb6 Mon Sep 17 00:00:00 2001 From: defacer Date: Tue, 3 Aug 2004 07:34:03 +0000 Subject: [PATCH] Fix a couple of notices that I just... noticed :-) --- calendar/lib.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.39.5