diff options
author | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2011-06-07 20:03:58 +0200 |
---|---|---|
committer | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2011-06-07 20:03:58 +0200 |
commit | e036434b8a2dbd8594c0ac5ac7233f4700e4e475 (patch) | |
tree | 0d37048ec06d603e45fd9852f208478a89e84476 /mod/viewcontacts.php | |
parent | 0e8b2092a0c30a8eb898a8f0e7130251300e8d47 (diff) | |
parent | c1b2e90e3720961c280f6378e48fda7bad7c3ad0 (diff) | |
download | volse-hubzilla-e036434b8a2dbd8594c0ac5ac7233f4700e4e475.tar.gz volse-hubzilla-e036434b8a2dbd8594c0ac5ac7233f4700e4e475.tar.bz2 volse-hubzilla-e036434b8a2dbd8594c0ac5ac7233f4700e4e475.zip |
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'mod/viewcontacts.php')
-rw-r--r-- | mod/viewcontacts.php | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index e8c2462e2..f9510bd6b 100644 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -47,13 +47,22 @@ function viewcontacts_content(&$a) { if($rr['self']) continue; + $url = $rr['url']; + + // route DFRN profiles through the redirect + + $is_owner = ((local_user() && ($a->profile['profile_uid'] == local_user())) ? true : false); + + if($is_owner && ($rr['network'] === NETWORK_DFRN) && ($rr['rel'])) + $url = 'redir/' . $rr['id']; + $o .= replace_macros($tpl, array( '$id' => $rr['id'], - '$alt_text' => t('Visit $username\'s profile'), + '$alt_text' => sprintf( t('Visit %s\'s profile [%s]'), $rr['name'], $rr['url']), '$thumb' => $rr['thumb'], '$name' => substr($rr['name'],0,20), '$username' => $rr['name'], - '$url' => $rr['url'] + '$url' => $url )); } |