OsmAnd/config/site/get_indexes.php

12 lines
281 B
PHP
Raw Normal View History

2011-04-29 16:53:38 +02:00
<?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');
?>