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