8 lines
216 B
PHP
Executable file
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');
|
|
?>
|