Details
Description
In the latest weekly build of 1.9.4+ (as of 2/5/09), there seems to be a typo on line 58 of the file in:
/course/report/log/lib.php
The addition of "$limitfrom, $iminum" to the end of the parameters is the culprit. $imitnum should be $limitnum, should it not? This is only in the latest revision of this file (1.22.2.3).
Currently:
$courseusers = get_group_users($selectedgroup, 'u.lastname ASC', '', 'u.id, u.firstname, u.lastname, u.idnumber', $limitfrom, $imitnum);
Correction:
$courseusers = get_group_users($selectedgroup, 'u.lastname ASC', '', 'u.id, u.firstname, u.lastname, u.idnumber', $limitfrom, $limitnum);
Thanks!
fixed in cvs, thanks