friendica/include/hostxrd.php

7 lines
173 B
PHP
Raw Normal View History

2010-07-23 23:33:34 +00:00
<?php
2010-10-12 11:39:32 +00:00
header("Content-type: text/xml");
$tpl = file_get_contents('view/xrd_host.tpl');
2010-07-23 23:33:34 +00:00
echo str_replace('$domain',$this->hostname,$tpl);
session_write_close();
exit();