1
0
Fork 0

Fix spaces around t() and tt()

This commit is contained in:
fabrixxm 2011-03-13 13:50:44 +01:00
commit a7af6df962
8 changed files with 10 additions and 10 deletions

View file

@ -419,7 +419,7 @@ function item_post(&$a) {
'$body' => strip_tags(bbcode($datarray['body']))
));
$res = mail($user['email'], sprintf(t("%s commented on your item at %s"),$from,$a->config['sitename']),
$res = mail($user['email'], sprintf( t("%s commented on your item at %s") ,$from,$a->config['sitename']),
$email_tpl,"From: " . t("Administrator") . "@" . $a->get_hostname() );
}
}
@ -442,7 +442,7 @@ function item_post(&$a) {
'$body' => strip_tags(bbcode($datarray['body']))
));
$res = mail($user['email'], sprintf(t("%s posted on your profile wall at %s"),$from, $a->config['sitename']),
$res = mail($user['email'], sprintf( t("%s posted on your profile wall at %s") ,$from, $a->config['sitename']),
$email_tpl,"From: " . t("Administrator@") . "@" . $a->get_hostname() );
}
}