keep space before t() for legacy string puller

This commit is contained in:
Friendika 2011-04-20 05:00:58 -07:00
parent afe4cc8bfa
commit 0af6014c94
2 changed files with 2 additions and 2 deletions

View file

@ -58,7 +58,7 @@ function localize_item(&$item){
$B = '[url=' . $Blink . ']' . $Bname . '[/url]';
if ($Bphoto!="") $Bphoto = '[url=' . $Blink . '][img]' . $Bphoto . '[/img][/url]';
$item['body'] = sprintf(t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$Bphoto;
$item['body'] = sprintf( t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$Bphoto;
}