From 26c4054652ac7aee3c4eb42e5d3721edf9bb0334 Mon Sep 17 00:00:00 2001 From: Friendika Date: Sun, 6 Mar 2011 19:43:03 -0800 Subject: [PATCH] more improvements on sparkle links bug #13 --- mod/network.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/mod/network.php b/mod/network.php index 92dc98608..9ab11f952 100644 --- a/mod/network.php +++ b/mod/network.php @@ -233,7 +233,7 @@ function network_content(&$a, $update = 0) { $redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ; - if(strlen($item['author-link']) && link_compare($item['author-link'],$item['url'])) { + if(strlen($item['author-link'])) { if(($item['network'] === 'dfrn') && (! $item['self'])) { $profile_link = $redirect_url; $sparkle = ' sparkle'; @@ -242,7 +242,6 @@ function network_content(&$a, $update = 0) { $profile_link = $a->get_baseurl() . '/redir/' . $author_contacts[$item['author-link']]; $sparkle = ' sparkle'; } - } $location = (($item['location']) ? '' . $item['location'] . '' : ''); @@ -380,7 +379,8 @@ function network_content(&$a, $update = 0) { $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); - if(strlen($item['author-link']) && link_compare($item['author-link'],$item['url'])) { + if(strlen($item['author-link'])) { + $profile_link = $item['author-link']; if(($item['network'] === 'dfrn') && (! $item['self'])) { $profile_link = $redirect_url; $sparkle = ' sparkle'; @@ -389,8 +389,6 @@ function network_content(&$a, $update = 0) { $profile_link = $a->get_baseurl() . '/redir/' . $author_contacts[$item['author-link']]; $sparkle = ' sparkle'; } - else - $profile_link = $item['author-link']; } else $profile_link = $item['url'];