dir/mod/opensearch.php
2012-05-15 22:31:36 -07:00

10 lines
172 B
PHP
Executable file

<?php
function opensearch_init(&$a) {
$r = file_get_contents('view/osearch.tpl');
header("Content-type: application/opensearchdescription+xml");
echo $r;
killme();
}