]> git.mxchange.org Git - friendica.git/commitdiff
bug #88, Thanks Chris! Added a couple of minor tweaks for identity checking and consi...
authorFriendika <info@friendika.com>
Mon, 6 Jun 2011 04:05:55 +0000 (21:05 -0700)
committerFriendika <info@friendika.com>
Mon, 6 Jun 2011 04:05:55 +0000 (21:05 -0700)
mod/viewcontacts.php

index e8c2462e232fa56fbc79bcf9378db43aa69a6ef5..f9510bd6b43af52f6eb0d23fce5514ba14acaaaf 100644 (file)
@@ -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
                ));
        }