2010-07-23 19:33:34 -04:00
|
|
|
<?php
|
2011-02-21 23:19:33 -05:00
|
|
|
|
2011-08-05 01:37:45 -04:00
|
|
|
function hostxrd_init(&$a) {
|
2011-06-25 22:40:37 -04:00
|
|
|
header('Access-Control-Allow-Origin: *');
|
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-09-19 05:13:59 -04:00
|
|
|
echo str_replace(array(
|
|
|
|
'$zroot','$domain','$zot_post'),array(z_root(),z_path(),z_root() . '/post'),$tpl);
|
2010-07-23 19:33:34 -04:00
|
|
|
session_write_close();
|
|
|
|
exit();
|
2011-02-21 23:19:33 -05:00
|
|
|
|
|
|
|
}
|