diff options
author | mistic100 <mistic@piwigo.org> | 2012-01-14 15:02:02 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2012-01-14 15:02:02 +0000 |
commit | a412558492bf24ee9c39502ac37730ff4bc40177 (patch) | |
tree | 046c7239358a40292d9c02a146eb897972af2c54 /register.php | |
parent | 5ea5350deb37777e815248488fd49699c18ab9e2 (diff) |
feature:2021 change contents of the mail + add option on admin/user_list
git-svn-id: http://piwigo.org/svn/trunk@12886 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'register.php')
-rw-r--r-- | register.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/register.php b/register.php index 67736e7af..35a3980e7 100644 --- a/register.php +++ b/register.php @@ -68,7 +68,10 @@ if (isset($_POST['submit'])) get_l10n_args('Hello %s,', $_POST['login']), get_l10n_args('Thank you for registering at %s!', $conf['gallery_title']), get_l10n_args('', ''), - get_l10n_args('Here is your password: %s', $_POST['password']), + get_l10n_args('Here are your connection settings', ''), + get_l10n_args('Username: %s', $_POST['login']), + get_l10n_args('Password: %s', $_POST['password']), + get_l10n_args('Email: %s', $_POST['mail_address']), get_l10n_args('', ''), get_l10n_args('If you think you\'ve received this email in error, please contact us at %s', get_webmaster_mail_address()), ); @@ -82,7 +85,7 @@ if (isset($_POST['submit'])) ) ); - $_SESSION['page_infos'][] = l10n('Successfully registered, an email with your password has been sent to you. Welcome!'); + $_SESSION['page_infos'][] = l10n('Successfully registered, you will soon receive an email with your connection settings. Welcome!'); } // log user and redirect |