aboutsummaryrefslogtreecommitdiffstats
path: root/mod/regmod.php
diff options
context:
space:
mode:
authorfabrixxm <fabrix.xm@gmail.com>2011-03-11 00:22:21 +0100
committerfabrixxm <fabrix.xm@gmail.com>2011-03-11 00:22:21 +0100
commit9f7878057f356ba785de26877a660bb025cae31d (patch)
tree8682db6a66be0e5c663a279e6e2adb5f5765c022 /mod/regmod.php
parent89781ba428f553e8eb4f415832e7e575adf141e0 (diff)
downloadvolse-hubzilla-9f7878057f356ba785de26877a660bb025cae31d.tar.gz
volse-hubzilla-9f7878057f356ba785de26877a660bb025cae31d.tar.bz2
volse-hubzilla-9f7878057f356ba785de26877a660bb025cae31d.zip
update source strings
Diffstat (limited to 'mod/regmod.php')
-rw-r--r--mod/regmod.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/regmod.php b/mod/regmod.php
index 00cfa06e2..2cbe810bc 100644
--- a/mod/regmod.php
+++ b/mod/regmod.php
@@ -51,7 +51,7 @@ function regmod_content(&$a) {
$r = q("DELETE FROM `register` WHERE `hash` = '%s' LIMIT 1",
dbesc($register[0]['hash'])
);
- notice( t('Registration revoked for ') . $user[0]['username'] . EOL);
+ notice( sprintf(t('Registration revoked for %s'), $user[0]['username']) . EOL);
return;
}
@@ -89,7 +89,7 @@ function regmod_content(&$a) {
'$uid' => $user[0]['uid']
));
- $res = mail($user[0]['email'], t('Registration details for '). $a->config['sitename'],
+ $res = mail($user[0]['email'], sprintf(t('Registration details for %s'), $a->config['sitename']),
$email_tpl,'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] );
if($res) {