function logintoboggan_update_4 in LoginToboggan 6
Same name and namespace in other branches
- 5 logintoboggan.install \logintoboggan_update_4()
Implementation of hook_update_4()
File
- ./
logintoboggan.install, line 51
Code
function logintoboggan_update_4() {
if (variable_get('toboggan_role', 2) == 1) {
variable_set('toboggan_role', 2);
drupal_set_message(t('Your previous setting for the logintoboggan pre-auth role was the anonymous user role, which is no longer allowed. The pre-auth role has now been set to the authenticated user role for your site. <em>Because of this change, all unvalidated users on your site now have authenticated user permissions!</em> If you wish to retain the previous functionality, create a new user role with the same access permissions as the anonymous user, and set the logintoboggan pre-auth role to the newly created role. You will also need to manually add any previously unvalidated users to the newly created pre-auth role.'), 'error');
}
return array();
}