diff options
author | fabrixxm <fabrix.xm@gmail.com> | 2011-03-11 00:22:21 +0100 |
---|---|---|
committer | fabrixxm <fabrix.xm@gmail.com> | 2011-03-11 00:22:21 +0100 |
commit | 9f7878057f356ba785de26877a660bb025cae31d (patch) | |
tree | 8682db6a66be0e5c663a279e6e2adb5f5765c022 /mod/register.php | |
parent | 89781ba428f553e8eb4f415832e7e575adf141e0 (diff) | |
download | volse-hubzilla-9f7878057f356ba785de26877a660bb025cae31d.tar.gz volse-hubzilla-9f7878057f356ba785de26877a660bb025cae31d.tar.bz2 volse-hubzilla-9f7878057f356ba785de26877a660bb025cae31d.zip |
update source strings
Diffstat (limited to 'mod/register.php')
-rw-r--r-- | mod/register.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/register.php b/mod/register.php index 13d770fda..3530ef588 100644 --- a/mod/register.php +++ b/mod/register.php @@ -307,7 +307,7 @@ function register_post(&$a) { '$password' => $new_password, '$uid' => $newuid )); - $res = mail($email, t('Registration details for ') . $a->config['sitename'], + $res = mail($email, sprintf(t('Registration details for %s'), $a->config['sitename']), $email_tpl, 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME']); @@ -344,7 +344,7 @@ function register_post(&$a) { '$hash' => $hash )); - $res = mail($a->config['admin_email'], t('Registration request at ') . $a->config['sitename'], + $res = mail($a->config['admin_email'], sprintf(t('Registration request at %s'), $a->config['sitename']), $email_tpl,'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME']); if($res) { |