friendica/include/hostxrd.php

11 lines
199 B
PHP
Raw Normal View History

2010-07-24 01:33:34 +02:00
<?php
function hostxrd($baseurl) {
2010-10-12 13:39:32 +02:00
header("Content-type: text/xml");
$tpl = file_get_contents('view/xrd_host.tpl');
echo str_replace('$domain',$baseurl,$tpl);
2010-07-24 01:33:34 +02:00
session_write_close();
exit();
}