Details
Description
Limit for My Courses (mycoursesperpage) is not being applied and is displaying all courses
Issue Links
| This issue duplicates: | ||||
| MDL-19089 | Ellipses incorrectly displayed for My Moodle page |
|
|
|
Limit for My Courses (mycoursesperpage) is not being applied and is displaying all courses
| This issue duplicates: | ||||
| MDL-19089 | Ellipses incorrectly displayed for My Moodle page |
|
|
|
Can be fixed by editing course/lib.php and making the following alteration within function print_my_moodle():
$courses = get_my_courses($USER->id, 'visible DESC,sortorder ASC', array('summary'));
to
$courses = get_my_courses($USER->id, 'visible DESC,sortorder ASC', array('summary'), false, $CFG->mycoursesperpage);