X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fxrd.php;h=7cfb643df1413bfa5d1d211369edfdcb89ee4929;hb=1a62a6ca921eb3388e18d6703a2c07f324d15d5d;hp=2fa6bcd99bf5099200b7319ff3acb29496500fba;hpb=c3139fa0fd49b0b4de4568d46a6946c75ccb2a62;p=friendica.git diff --git a/mod/xrd.php b/mod/xrd.php index 2fa6bcd99b..7cfb643df1 100644 --- a/mod/xrd.php +++ b/mod/xrd.php @@ -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'],