mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00
blocks MDL-25093 fixed an error that meant that the course limit wasnt being applied in the course overview
This commit is contained in:
parent
b871436148
commit
448d604cb4
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ class block_course_overview extends block_base {
|
|||
$courses_limit = $courses_limit + 1;
|
||||
}
|
||||
|
||||
$courses = enrol_get_my_courses(NULL, 'visible DESC,sortorder ASC', '*', $courses_limit);
|
||||
$courses = enrol_get_my_courses('id, shortname', 'visible DESC,sortorder ASC', $courses_limit);
|
||||
$site = get_site();
|
||||
$course = $site; //just in case we need the old global $course hack
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue