We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This issue raised by Olli Savolainen in the comments on https://moodle.org/plugins/local_usersynccsv:
"There is an undocumented behaviour of this plugin, it resets the authentication method and various other data.
$user->lang = $CFG->lang; $user->mnethostid = $CFG->mnet_localhost_id; $user->auth = 'manual'; $user->confirmed = 1; if (empty($user->city)) { $user->city = "none"; } if (empty($user->country)) { $user->country = "no"; }
So in many scenarios these should be commented out to avoid unintended consequences."
I agree that the plugin should not change the $user->auth to "manual" each time.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This issue raised by Olli Savolainen in the comments on https://moodle.org/plugins/local_usersynccsv:
"There is an undocumented behaviour of this plugin, it resets the authentication method and various other data.
So in many scenarios these should be commented out to avoid unintended consequences."
I agree that the plugin should not change the $user->auth to "manual" each time.
The text was updated successfully, but these errors were encountered: