From fb01d8bec5fea541a7ea6d67ef0db7790cab2cdf Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 4 Dec 2011 03:54:40 -0800 Subject: [PATCH] fix incorrect default author --- include/conversation.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/conversation.php b/include/conversation.php index 0fd9553602..deced3cb8c 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -533,6 +533,10 @@ function conversation(&$a, $items, $mode, $update) { $profile_name = (((strlen($item['author-name'])) && $diff_author) ? $item['author-name'] : $item['name']); + if($item['author-link'] && (! $item['author-name'])) + $profile_name = $item['author-link']; + + $sp = false; $profile_link = best_link_url($item,$sp); if($sp)