diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-04 16:02:32 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-04 16:02:32 +0000 |
commit | 207e6f145f68140b8044b21685b6bf96e7965caf (patch) | |
tree | 9a5da612941bd7d1fd89a929fb77ea052410c3c5 | |
parent | ee2065323386478e2d9c1c9f76723e989ce67b1d (diff) | |
download | brdo-207e6f145f68140b8044b21685b6bf96e7965caf.tar.gz brdo-207e6f145f68140b8044b21685b6bf96e7965caf.tar.bz2 |
#184729 by hazexp: remove duplicate wording about the username in mail sent out to new users
-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 e43dc026e..15df4959b 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -1486,7 +1486,7 @@ function _user_mail_text($key, $language = NULL, $variables = array()) { case 'status_activated_subject': return t('Account details for !username at !site (approved)', $variables, $langcode); case 'status_activated_body': - return t("!username,\n\nYour account at !site has been activated.\n\nYou may now log in by clicking on this link or copying and pasting it in your browser:\n\n!login_url\n\nThis is a one-time login, so it can be used only once.\n\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\n\nOnce you have set your own password, you will be able to log in to !login_uri in the future using the following username:\n\nusername: !username\n", $variables, $langcode); + return t("!username,\n\nYour account at !site has been activated.\n\nYou may now log in by clicking on this link or copying and pasting it in your browser:\n\n!login_url\n\nThis is a one-time login, so it can be used only once.\n\nAfter logging in, you will be redirected to !edit_uri so you can change your password.\n\nOnce you have set your own password, you will be able to log in to !login_uri in the future using:\n\nusername: !username\n", $variables, $langcode); case 'status_blocked_subject': return t('Account details for !username at !site (blocked)', $variables, $langcode); case 'status_blocked_body': |