2010-07-23 19:33:34 -04:00
|
|
|
<?php
|
2011-02-21 23:19:33 -05:00
|
|
|
|
|
|
|
function hostxrd($hostname) {
|
|
|
|
|
2010-10-12 07:39:32 -04:00
|
|
|
header("Content-type: text/xml");
|
2010-10-04 07:22:34 -04:00
|
|
|
$tpl = file_get_contents('view/xrd_host.tpl');
|
2011-02-21 23:19:33 -05:00
|
|
|
echo str_replace('$domain',$hostname,$tpl);
|
2010-07-23 19:33:34 -04:00
|
|
|
session_write_close();
|
|
|
|
exit();
|
2011-02-21 23:19:33 -05:00
|
|
|
|
|
|
|
}
|