diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-10-18 00:43:49 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-10-18 00:43:49 -0700 |
commit | 511c761fec572a093e833541968635ca011cb71e (patch) | |
tree | 3db5bbc37e47d7bfb7da1086483fff28ca66e147 /mod/contacts.php | |
parent | be981a4f8a00fa7fb3e5bf9ac47aa38fd5187a35 (diff) | |
download | volse-hubzilla-511c761fec572a093e833541968635ca011cb71e.tar.gz volse-hubzilla-511c761fec572a093e833541968635ca011cb71e.tar.bz2 volse-hubzilla-511c761fec572a093e833541968635ca011cb71e.zip |
group/community/celebrity pages
Diffstat (limited to 'mod/contacts.php')
-rw-r--r-- | mod/contacts.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/contacts.php b/mod/contacts.php index dfd98961b..dbad2a158 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -172,7 +172,7 @@ function contacts_content(&$a) { break; } - if($r[0]['rel'] != REL_FAN) { + if(($r[0]['network'] === 'dfrn') && ($r[0]['rel'])) { $url = "redir/{$r[0]['id']}"; $sparkle = ' class="sparkle" '; } @@ -272,7 +272,7 @@ function contacts_content(&$a) { break; } - if($rr['rel'] != REL_FAN) { + if(($rr['network'] === 'dfrn') && ($rr['rel'])) { $url = "redir/{$rr['id']}"; $sparkle = ' class="sparkle" '; } |