OsmAnd/config/site/get_indexes.php
2011-04-29 16:57:49 +02:00

11 lines
281 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');
?>