mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-08 15:09:30 +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);
|
||
|
}
|
||
|
|
||
|
?>
|