From: Evan Prodromou Date: Thu, 5 Mar 2009 19:03:42 +0000 (-0800) Subject: @-links go to permalinks for local users X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b9781258bbfaac0e7fc91af4f77f1f340274a88e;p=quix0rs-gnu-social.git @-links go to permalinks for local users --- diff --git a/lib/util.php b/lib/util.php index f9a787d473..167508d2b3 100644 --- a/lib/util.php +++ b/lib/util.php @@ -622,9 +622,15 @@ function common_at_link($sender_id, $nickname) $sender = Profile::staticGet($sender_id); $recipient = common_relative_profile($sender, common_canonical_nickname($nickname)); if ($recipient) { + $user = User::staticGet('id', $recipient->id); + if ($user) { + $url = common_local_url('userbyid', array('id' => $user->id)); + } else { + $url = $recipient->profileurl; + } $xs = new XMLStringer(false); $xs->elementStart('span', 'vcard'); - $xs->elementStart('a', array('href' => $recipient->profileurl, + $xs->elementStart('a', array('href' => $url, 'class' => 'url')); $xs->element('span', 'fn nickname', $nickname); $xs->elementEnd('a');