friendica/mod/hostxrd.php

14 lines
402 B
PHP
Raw Normal View History

2010-07-24 01:33:34 +02:00
<?php
require_once('include/crypto.php');
function hostxrd_init(&$a) {
2011-06-26 04:40:37 +02:00
header('Access-Control-Allow-Origin: *');
2010-10-12 13:39:32 +02:00
header("Content-type: text/xml");
$tpl = file_get_contents('view/xrd_host.tpl');
2011-09-19 11:13:59 +02:00
echo str_replace(array(
'$zroot','$domain','$zot_post','$bigkey'),array(z_root(),z_path(),z_root() . '/post', salmon_key(get_config('system','site_pubkey'))),$tpl);
2010-07-24 01:33:34 +02:00
session_write_close();
exit();
}