summaryrefslogtreecommitdiff
path: root/mirror.php
diff options
context:
space:
mode:
Diffstat (limited to 'mirror.php')
-rw-r--r--mirror.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/mirror.php b/mirror.php
index 194df0e..8701035 100644
--- a/mirror.php
+++ b/mirror.php
@@ -85,6 +85,8 @@
);
}
else {
- passthru("cat '".$pfad."'");
+ $handle = fopen($pfad);
+ fpassthru($handle);
+ fclose($handle);
}
}