From: Friendika Date: Mon, 7 Mar 2011 03:43:03 +0000 (-0800) Subject: more improvements on sparkle links bug #13 X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=26c4054652ac7aee3c4eb42e5d3721edf9bb0334;p=friendica.git more improvements on sparkle links bug #13 --- diff --git a/mod/network.php b/mod/network.php index 92dc986080..9ab11f952b 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'];