aboutsummaryrefslogtreecommitdiffstats
path: root/mod/wfinger.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-05-24 20:21:30 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-05-24 20:21:30 -0700
commitdfa4984089449b257315536b3d9f949df375405f (patch)
tree9524f24c43bdbaaa427cffdcb49400d5cc95bb7d /mod/wfinger.php
parent27137e48eba585c6d61a7b34436661b29af77760 (diff)
parent1828771557be409aea396751628966b02f3e2872 (diff)
downloadvolse-hubzilla-dfa4984089449b257315536b3d9f949df375405f.tar.gz
volse-hubzilla-dfa4984089449b257315536b3d9f949df375405f.tar.bz2
volse-hubzilla-dfa4984089449b257315536b3d9f949df375405f.zip
Merge branch 'master' of https://github.com/redmatrix/redmatrix
Diffstat (limited to 'mod/wfinger.php')
-rw-r--r--mod/wfinger.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/wfinger.php b/mod/wfinger.php
index bdec92b54..eba17de51 100644
--- a/mod/wfinger.php
+++ b/mod/wfinger.php
@@ -65,7 +65,7 @@ function wfinger_init(&$a) {
$result['aliases'] = array();
- $result['properties'] = array('http://webfinger.example/ns/name' => $r[0]['channel_name']);
+ $result['properties'] = array('http://webfinger.net/ns/name' => $r[0]['channel_name']);
foreach($aliases as $alias)
if($alias != $resource)
@@ -75,18 +75,18 @@ function wfinger_init(&$a) {
$result['links'] = array(
array(
- 'rel' => 'http://webfinger.example/rel/avatar',
+ 'rel' => 'http://webfinger.net/rel/avatar',
'type' => $r[0]['xchan_photo_mimetype'],
'href' => $r[0]['xchan_photo_l']
),
array(
- 'rel' => 'http://webfinger.example/rel/profile-page',
+ 'rel' => 'http://webfinger.net/rel/profile-page',
'href' => z_root() . '/profile/' . $r[0]['channel_address'],
),
array(
- 'rel' => 'http://webfinger.example/rel/blog',
+ 'rel' => 'http://webfinger.net/rel/blog',
'href' => z_root() . '/channel/' . $r[0]['channel_address'],
),