You are here

function user_register_notify_update_7004 in User registration notification 7

Lowercase send by role or custom e-mail address value.

File

./user_register_notify.install, line 167
Installation file for user_register_notify module.

Code

function user_register_notify_update_7004() {
  $messages = array();
  $user_register_notify_type = strtolower(variable_get('user_register_notify_type', 'custom'));
  variable_set('user_register_notify_type', $user_register_notify_type);
  $messages[] = t('Fixed send by role or custom e-mail address setting.');
  return implode(' ', $messages);
}