#10234 fixed js added when file download

This commit is contained in:
Daniel Cebrian 2023-02-01 11:16:24 +01:00
parent 6d2f4d7eac
commit 11e04e2f6a
1 changed files with 1 additions and 0 deletions

View File

@ -97,6 +97,7 @@ if (empty($file) === true || empty($hash) === true || $hash !== md5($file_raw.$c
header('Content-Length: '.filesize($downloadable_file));
header('Content-Disposition: attachment; filename="'.basename($downloadable_file).'"');
readfile($downloadable_file);
return;
}
}