OsmAnd/config/site/get_indexes.php
2012-01-02 23:37:28 +01:00

8 lines
216 B
PHP
Executable file

<?php
include 'update_indexes.php';
updateGoogleCodeIndexes();
header('Content-type: application/xml');
header('Content-Disposition: attachment; filename="indexes.xml"');
readfile('indexes.xml');
?>