6 lines
163 B
PHP
6 lines
163 B
PHP
<?php
|
|
header('Content-type: application/xml');
|
|
header('Content-Disposition: attachment; filename="tile_sources.xml"');
|
|
|
|
readfile('tile_sources.xml');
|
|
?>
|