diff options
author | friendica <info@friendica.com> | 2012-01-08 01:08:57 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-01-08 01:08:57 -0800 |
commit | 5c72ead74ec0b631b4556f8789c9b4c6bc90eb17 (patch) | |
tree | 612f7a40255b05fe42cc68f739e949ad2349bc97 /mod/dfrn_confirm.php | |
parent | 977a49ad93c915ff89908e19017bf79bffedfa7c (diff) | |
download | volse-hubzilla-5c72ead74ec0b631b4556f8789c9b4c6bc90eb17.tar.gz volse-hubzilla-5c72ead74ec0b631b4556f8789c9b4c6bc90eb17.tar.bz2 volse-hubzilla-5c72ead74ec0b631b4556f8789c9b4c6bc90eb17.zip |
contact photo missing from friend activities
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 1b0985cef..89b09ef77 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -463,7 +463,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>'; |