From c0a0710f97d66b695a3c3d1b56d885653d6e14f8 Mon Sep 17 00:00:00 2001 From: Friendika Date: Fri, 21 Jan 2011 12:20:05 -0800 Subject: [PATCH] incorrect item owner on like/dislike activity body when remote-auth profile --- mod/like.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/like.php b/mod/like.php index cb4093d5d9..f256cd9a1f 100644 --- a/mod/like.php +++ b/mod/like.php @@ -150,7 +150,7 @@ EOT; $arr['author-link'] = $contact['url']; $arr['author-avatar'] = $contact['thumb']; $arr['body'] = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]' . ' ' . t('likes') . ' ' - . '[url=' . $owner['url'] . ']' . $owner['name'] . t('\'s') . '[/url]' . ' ' + . '[url=' . $item['author-link'] . ']' . $item['author-name'] . t('\'s') . '[/url]' . ' ' . '[url=' . $a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . ']' . $post_type . '[/url]' ; $arr['verb'] = $activity;