aboutsummaryrefslogtreecommitdiffstats
path: root/mod/viewcontacts.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-06-05 21:05:55 -0700
committerFriendika <info@friendika.com>2011-06-05 21:05:55 -0700
commit18f4c6094acd65b9a0eb179f5228bf2e13713b5f (patch)
tree3d5a493bcd539e5fe99eebc77ad25c1887d21596 /mod/viewcontacts.php
parent8e3cc8669bbae9e55e7147c811a98228ab947799 (diff)
downloadvolse-hubzilla-18f4c6094acd65b9a0eb179f5228bf2e13713b5f.tar.gz
volse-hubzilla-18f4c6094acd65b9a0eb179f5228bf2e13713b5f.tar.bz2
volse-hubzilla-18f4c6094acd65b9a0eb179f5228bf2e13713b5f.zip
bug #88, Thanks Chris! Added a couple of minor tweaks for identity checking and consistency with other profile viewing links
Diffstat (limited to 'mod/viewcontacts.php')
-rw-r--r--mod/viewcontacts.php13
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
));
}