diff --git a/pandora_console/include/get_file.php b/pandora_console/include/get_file.php index f312340df5..8c9d849ea9 100644 --- a/pandora_console/include/get_file.php +++ b/pandora_console/include/get_file.php @@ -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; } }