friendica/mod/hostxrd.php

12 wiersze
307 B
PHP
Czysty Zwykły widok Historia

2010-07-23 23:33:34 +00:00
<?php
function hostxrd_init(&$a) {
2011-06-26 02:40:37 +00:00
header('Access-Control-Allow-Origin: *');
2010-10-12 11:39:32 +00:00
header("Content-type: text/xml");
$tpl = file_get_contents('view/xrd_host.tpl');
2011-09-19 09:13:59 +00:00
echo str_replace(array(
'$zroot','$domain','$zot_post'),array(z_root(),z_path(),z_root() . '/post'),$tpl);
2010-07-23 23:33:34 +00:00
session_write_close();
exit();
}