forked from extern/egroupware
10 lines
154 B
PHP
10 lines
154 B
PHP
|
<?php
|
||
|
|
||
|
$file = realpath('..') . '\\' . $_GET['path'];
|
||
|
|
||
|
if (file_exists($file)) {
|
||
|
header('Content-type: text/xml');
|
||
|
readfile($file);
|
||
|
}
|
||
|
|
||
|
?>
|