friendica/mod/hostxrd.php

11 lines
273 B
PHP
Raw Normal View History

2010-07-23 19:33:34 -04:00
<?php
function hostxrd_init(&$a) {
2011-06-25 22:40:37 -04:00
header('Access-Control-Allow-Origin: *');
2010-10-12 07:39:32 -04:00
header("Content-type: text/xml");
$tpl = file_get_contents('view/xrd_host.tpl');
echo str_replace(array('$zroot','$domain'),array(z_root(),z_path()),$tpl);
2010-07-23 19:33:34 -04:00
session_write_close();
exit();
}