You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suggestion: Transform both the email inputs from users & moodle user email to lowercase before performing matching, or include a setting for that
Context: We have been experiencing issues with exact matching method for moodle users with case sensitive emails, for example: [email protected], [email protected], [email protected] etc. should match a single user in moodle instead of matching different users
Thank you
The text was updated successfully, but these errors were encountered:
I met this issue as well so I have to change the codes in this line to get users via $userrecords = $DB->get_records_sql('SELECT * FROM {user} WHERE LOWER(email) = LOWER(:email)', array('email' => $email));
Suggestion: Transform both the email inputs from users & moodle user email to lowercase before performing matching, or include a setting for that
Context: We have been experiencing issues with exact matching method for moodle users with case sensitive emails, for example: [email protected], [email protected], [email protected] etc. should match a single user in moodle instead of matching different users
Thank you
The text was updated successfully, but these errors were encountered: