friendica-github/include/hostxrd.php

12 lines
242 B
PHP
Raw Normal View History

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