summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2008-05-17 17:02:56 +0000
committerDries Buytaert <dries@buytaert.net>2008-05-17 17:02:56 +0000
commit21000956a2cad5a65cf39a1d6b518fb5f622b7b1 (patch)
treebed94d94fb98a57e31784a1a530cc4f9839a7387 /modules
parent35bb57cff2c8cde34fe9f722192fce7ba1219fd6 (diff)
downloadbrdo-21000956a2cad5a65cf39a1d6b518fb5f622b7b1.tar.gz
brdo-21000956a2cad5a65cf39a1d6b518fb5f622b7b1.tar.bz2
- Patch #259463 by dmitrig01: notification e-mail for pending user registrations had blank subject line.
Diffstat (limited to 'modules')
-rw-r--r--modules/user/user.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/user.module b/modules/user/user.module
index b7ea58c8d..238fd9c23 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -1594,7 +1594,7 @@ function _user_mail_text($key, $language = NULL, $variables = array()) {
case 'register_admin_created_body':
return t("!username,\n\nA site administrator at !site has created an account for you. You may now log in to !login_uri using the following username and password:\n\nusername: !username\npassword: !password\n\nYou may also 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\n\n-- !site team", $variables, $langcode);
case 'register_pending_approval_subject':
- case 'pending_approval_admin_subject':
+ case 'register_pending_approval_admin_subject':
return t('Account details for !username at !site (pending admin approval)', $variables, $langcode);
case 'register_pending_approval_body':
return t("!username,\n\nThank you for registering at !site. Your application for an account is currently pending approval. Once it has been approved, you will receive another e-mail containing information about how to log in, set your password, and other details.\n\n\n-- !site team", $variables, $langcode);