diff options
author | James Walker <walkah@walkah.net> | 2010-03-15 15:17:31 -0400 |
---|---|---|
committer | James Walker <walkah@walkah.net> | 2010-03-15 15:17:31 -0400 |
commit | 7aa49b5e87efa2aa383b446b264f00608f1a5eac (patch) | |
tree | cabc33fd818b58a1f5bb1491e913feaef8d41a1a /plugins/OStatus | |
parent | e9b671e3af17aaba1cbfb4dbe9e71fa4117cd0e3 (diff) |
use canonical user url in xrd
Diffstat (limited to 'plugins/OStatus')
-rw-r--r-- | plugins/OStatus/lib/xrdaction.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/OStatus/lib/xrdaction.php b/plugins/OStatus/lib/xrdaction.php index b3c1d8453..f1a56e0a8 100644 --- a/plugins/OStatus/lib/xrdaction.php +++ b/plugins/OStatus/lib/xrdaction.php @@ -46,10 +46,10 @@ class XrdAction extends Action if (empty($xrd->subject)) { $xrd->subject = Discovery::normalize($this->uri); } - $xrd->alias[] = common_profile_url($nick); + $xrd->alias[] = $this->user->uri; $xrd->links[] = array('rel' => Discovery::PROFILEPAGE, 'type' => 'text/html', - 'href' => common_profile_url($nick)); + 'href' => $this->user->uri); $xrd->links[] = array('rel' => Discovery::UPDATESFROM, 'href' => common_local_url('ApiTimelineUser', @@ -65,7 +65,7 @@ class XrdAction extends Action // XFN $xrd->links[] = array('rel' => 'http://gmpg.org/xfn/11', 'type' => 'text/html', - 'href' => common_profile_url($nick)); + 'href' => $this->user->uri); // FOAF $xrd->links[] = array('rel' => 'describedby', 'type' => 'application/rdf+xml', |