mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-18 14:03:19 +01:00
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);
|
|
}
|
|
|
|
?>
|