10 lines
172 B
PHP
Executable file
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();
|
|
} |