Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 3.4
-
Fix Version/s: 3.4.1
-
Component/s: Enrolments, User management
-
Testing Instructions:
-
Affected Branches:MOODLE_34_STABLE
-
Fixed Branches:MOODLE_34_STABLE
-
Pull from Repository:
-
Pull Master Branch:
MDL-60830-master -
Pull Master Diff URL:
Description
After Moodle 3.4 update, Enrol Users dialogue does not show user emails anymore. This makes impossible to differentiate between users with same names. I understand that you can search by email. But that's not how people tend to work with enrolments.
WORKAROUND:
To add a mail field, go to enrol/externallib.php:456, and append 'email' to the $requiredfields array. The email will appear next to each user like a charm.
$requiredfields = ['id', 'fullname', 'email', 'profileimageurl', 'profileimageurlsmall'];