]> git.mxchange.org Git - friendica.git/blobdiff - mod/xrd.php
DE update to the strings
[friendica.git] / mod / xrd.php
index 2fa6bcd99bf5099200b7319ff3acb29496500fba..dfb188c138197f17bdd00aa2f608aec17df7cb25 100644 (file)
@@ -28,7 +28,8 @@ function xrd_init(&$a) {
        header("Content-type: text/xml");
 
        if(get_config('system','diaspora_enabled')) {
-               $tpl = file_get_contents('view/xrd_diaspora.tpl');
+               //$tpl = file_get_contents('view/xrd_diaspora.tpl');
+               $tpl = get_markup_template('xrd_diaspora.tpl');
                $dspr = replace_macros($tpl,array(
                        '$baseurl' => $a->get_baseurl(),
                        '$dspr_guid' => $r[0]['guid'],
@@ -38,7 +39,8 @@ function xrd_init(&$a) {
        else
                $dspr = '';
 
-       $tpl = file_get_contents('view/xrd_person.tpl');
+       //$tpl = file_get_contents('view/xrd_person.tpl');
+       $tpl = get_markup_template('xrd_person.tpl');
 
        $o = replace_macros($tpl, array(
                '$nick'        => $r[0]['nickname'],
@@ -52,6 +54,7 @@ function xrd_init(&$a) {
                '$dspr'        => $dspr,
                '$salmon'      => $a->get_baseurl() . '/salmon/'        . $r[0]['nickname'],
                '$salmen'      => $a->get_baseurl() . '/salmon/'        . $r[0]['nickname'] . '/mention',
+               '$subscribe'   => $a->get_baseurl() . '/follow?url={uri}',
                '$modexp'      => 'data:application/magic-public-key,'  . $salmon_key,
                '$bigkey'      =>  salmon_key($r[0]['pubkey'])
        ));