Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Holger Ludvigsen committed May 13, 2015
1 parent 83d99da commit 5bc736b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/io.php
Expand Up @@ -196,7 +196,7 @@ function main() {
if (isset($_GET['batch'])) {
$files = scandir('./uploaded_files');
foreach($files as $file) {
$filename = "./uploaded_files" . $file;
$filename = "./uploaded_files/" . $file;
$fp = fopen($filename, 'r');
$content = fread($fp, filesize($filename));
fclose($fp);
Expand Down

0 comments on commit 5bc736b

Please sign in to comment.