function logintoboggan_user_load in LoginToboggan 7
Implement hook_user_load().
File
- ./
logintoboggan.module, line 1090 - LoginToboggan module
Code
function logintoboggan_user_load($users) {
foreach ($users as $account) {
// If the user has the pre-auth role, unset the authenticated role
_logintoboggan_user_roles_alter($account);
}
}