From d15673f13f640f6278b1635f2974dfeb74851e0c Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sat, 20 Aug 2011 05:58:37 +0200 Subject: [PATCH] removed single quotes around publicly linked download file --- apps/files_sharing/get.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_sharing/get.php b/apps/files_sharing/get.php index e50a319ace..a1b6c316cd 100644 --- a/apps/files_sharing/get.php +++ b/apps/files_sharing/get.php @@ -67,7 +67,7 @@ if ($source !== false) { header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Pragma: public"); - header("Content-Disposition: filename='".basename($source)."'"); + header("Content-Disposition: filename=".basename($source)); header("Content-Type: " . $mimetype); header("Content-Length: " . OC_Filesystem::filesize($source)); //download the file @@ -80,4 +80,4 @@ if ($source !== false) { $tmpl->printPage(); die(); } -?> \ No newline at end of file +?>