diff options
author | Friendika <info@friendika.com> | 2011-04-20 05:00:58 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-20 05:00:58 -0700 |
commit | 0af6014c940eba5c5d9399e922794da373738337 (patch) | |
tree | b9bf93f34944c3c2c2f1eea587e3509b8d6e7e10 /mod/dfrn_confirm.php | |
parent | afe4cc8bfa01017f3dfc1f40892b78f125c596f9 (diff) | |
download | volse-hubzilla-0af6014c940eba5c5d9399e922794da373738337.tar.gz volse-hubzilla-0af6014c940eba5c5d9399e922794da373738337.tar.bz2 volse-hubzilla-0af6014c940eba5c5d9399e922794da373738337.zip |
keep space before t() for legacy string puller
Diffstat (limited to 'mod/dfrn_confirm.php')
-rw-r--r-- | mod/dfrn_confirm.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index 7c28bf902..d0543ac84 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -427,7 +427,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { $A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]'; $B = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]'; $BPhoto = '[url=' . $contact['url'] . ']' . '[img]' . $contact['thumb'] . '[/img][/url]'; - $arr['body'] = sprintf(t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$Bphoto; + $arr['body'] = sprintf( t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$Bphoto; $arr['object'] = '<object><type>' . ACTIVITY_OBJ_PERSON . '</type><title>' . $contact['name'] . '</title>' . '<id>' . $contact['url'] . '/' . $contact['name'] . '</id>'; |