OsmAnd/config/site/get_indexes.php
2011-05-06 12:33:45 +02:00

11 lines
270 B
PHP
Executable file

<?php
if (!file_exists("indexes.xml")) {
include 'update_googlecode_indexes.php';
updateGoogleCodeIndexes();
}
header('Content-type: application/xml');
header('Content-Disposition: attachment; filename="indexes.xml"');
readfile('indexes.xml');
?>