diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-14 18:29:59 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-14 18:29:59 +0000 |
commit | 7bcd7429dfc34023f62d6d10057d8755226ed1ab (patch) | |
tree | 25e4b7a49fb9c6f125604177c70841cd6dd7cd43 /modules | |
parent | 24c66b82fc61af8e096dd66810e4c90604fffd67 (diff) | |
download | brdo-7bcd7429dfc34023f62d6d10057d8755226ed1ab.tar.gz brdo-7bcd7429dfc34023f62d6d10057d8755226ed1ab.tar.bz2 |
#110474 by dww and keith.smith: passwords are not sent in welcome mails, so do not mislead our users
Diffstat (limited to 'modules')
-rw-r--r-- | modules/user/user.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index fe1e0b62e..98048f3d1 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -2231,7 +2231,7 @@ function user_register_submit($form, &$form_state) { else { // Create new user account, administrator approval required. _user_mail_notify('register_pending_approval', $account); - drupal_set_message(t('Thank you for applying for an account. Your account is currently pending approval by the site administrator.<br />In the meantime, your password and further instructions have been sent to your e-mail address.')); + drupal_set_message(t('Thank you for applying for an account. Your account is currently pending approval by the site administrator.<br />In the meantime, a welcome message with further instructions has been sent to your e-mail address.')); $form_state['redirect'] = ''; return; |