diff options
Diffstat (limited to 'mod/display.php')
-rw-r--r-- | mod/display.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mod/display.php b/mod/display.php index e9d1bbbb1..af121abdb 100644 --- a/mod/display.php +++ b/mod/display.php @@ -211,8 +211,11 @@ function display_content(&$a) { } } - $profile_name = ((strlen($item['author-name'])) ? $item['author-name'] : $item['name']); - $profile_avatar = ((strlen($item['author-avatar'])) ? $item['author-avatar'] : $item['thumb']); + $diff_author = (($item['url'] !== $item['author-link']) ? true : false); + + $profile_name = (((strlen($item['author-name'])) && $diff_author) ? $item['author-name'] : $item['name']); + $profile_avatar = (((strlen($item['author-avatar'])) && $diff_author) ? $item['author-avatar'] : $thumb); + $profile_link = $profile_url; if(($item['contact-id'] == remote_user()) || ($item['uid'] == local_user())) |