From 4dbca99edfd5177fcecfaba777766177bd130e22 Mon Sep 17 00:00:00 2001 From: martinlanghoff Date: Sun, 6 May 2007 05:28:39 +0000 Subject: [PATCH] get_my_courses() - added optimisation for guest login - was causing very slow page generation --- lib/datalib.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/datalib.php b/lib/datalib.php index 65dce50b3c..7472d84bda 100644 --- a/lib/datalib.php +++ b/lib/datalib.php @@ -717,6 +717,11 @@ function get_my_courses($userid, $sort=NULL, $fields=NULL, $doanything=false,$li // Check root permissions $sitecontext = get_context_instance(CONTEXT_SYSTEM, SITEID); + + // Guest's do not have any courses + if (has_capability('moodle/legacy:guest',$sitecontext,$userid,true)) { + return(array()); + } // we can optimise some things for true admins $candoanything = false; @@ -778,7 +783,8 @@ ORDER BY $sort"); $mycourses[$course->id] = $course; continue; } - + + // users with moodle/course:view are considered course participants // the course needs to be visible, or user must have moodle/course:viewhiddencourses // capability set to view hidden courses -- 2.39.5