From f6df71b74d556b086bc5c05c141267cd02d93d2f Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 8 May 2012 10:27:02 -0400 Subject: [PATCH] Set Content-Disposition to attachment for shared private links --- apps/files_sharing/get.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/get.php b/apps/files_sharing/get.php index 59a4efba6a6..caf25d00cfd 100755 --- a/apps/files_sharing/get.php +++ b/apps/files_sharing/get.php @@ -68,7 +68,7 @@ if (isset($_GET['token']) && $source = OC_Share::getSource($_GET['token'])) { $mimetype = OC_Filesystem::getMimeType($source); header("Content-Transfer-Encoding: binary"); OCP\Response::disableCaching(); - header('Content-Disposition: filename="'.basename($source).'"'); + header('Content-Disposition: attachment; filename="'.basename($source).'"'); header("Content-Type: " . $mimetype); header("Content-Length: " . OC_Filesystem::filesize($source)); //download the file -- 2.39.5