CinecaElearning / moodle-mod_attendanceregister

Attendance Register activity module for Moodle 2
7 stars 8 forks source link

Create_function should not be used #4

Closed 2shediac closed 6 years ago

2shediac commented 6 years ago

In locallib.php, create_function is used.

I believe this can be corrected with

old: usort($uniqueTrackedUsers, create_function('$a,$b', $compareByFullName));

new usort($uniqueTrackedUsers, function($a, $b) { return strcmp( fullname($a), fullname($b) ); });

CinecaElearning commented 6 years ago

Hi, I've just updated the master branch with your patch. Thank you very much!