-
Sub-task
-
Resolution: Fixed
-
Minor
-
1.9
-
None
-
None
-
MOODLE_19_STABLE
-
MOODLE_19_STABLE
in course/lib.php in head:
if ($hidesitecourse and ($course->id == SITEID))
{ continue; }in the patch this has been changed to:
if ($hidesitecourse) { continue; }
which is not correct and will hide all top-level sites (most small moodle sites). This should be undone.