From aa58963455034d8912878279dcbb83d2ac9d392a Mon Sep 17 00:00:00 2001 From: Alexander Davis Date: Thu, 13 Aug 2020 20:31:59 +0100 Subject: [PATCH] Fixes Firefox Bug Part of closing #78 --- 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');