From 21000956a2cad5a65cf39a1d6b518fb5f622b7b1 Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Sat, 17 May 2008 17:02:56 +0000 Subject: [PATCH] - Patch #259463 by dmitrig01: notification e-mail for pending user registrations had blank subject line. --- modules/user/user.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/user/user.module b/modules/user/user.module index b7ea58c8d867..238fd9c2358a 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); -- GitLab