From ab630738f329acbee155847927cd4659bdcaa9da Mon Sep 17 00:00:00 2001 From: Alexander Davis Date: Thu, 13 Aug 2020 20:39:18 +0100 Subject: [PATCH] Merge from Main (#84) * Update assigned-issues-inprogress.yml * Fixes Firefox Bug Part of closing #78 Co-authored-by: Luke Tainton --- app/public/actions/download.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/public/actions/download.php b/app/public/actions/download.php index 953fcd1..2c914dd 100644 --- a/app/public/actions/download.php +++ b/app/public/actions/download.php @@ -20,7 +20,7 @@ finfo_close($finfo); //Use Content-Disposition: attachment to specify the filename - header('Content-Disposition: attachment; filename='.$remote_filename); + header('Content-Disposition: attachment; filename="'.$remote_filename.'"'); //No cache header('Expires: 0');