From: friendica Date: Sun, 4 Dec 2011 11:54:40 +0000 (-0800) Subject: fix incorrect default author X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fb01d8bec5fea541a7ea6d67ef0db7790cab2cdf;p=friendica.git fix incorrect default author --- 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)