diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-12 12:03:59 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-12 12:03:59 +0200 |
commit | 0b4ed2577676ee090812b9be76e00483217a062b (patch) | |
tree | 4ab838490b25370dce3ec6a6ef4756c4396d918a | |
parent | 02824cabfed9ff13501858e1bb674f027526858f (diff) | |
download | nextcloud-server-0b4ed2577676ee090812b9be76e00483217a062b.tar.gz nextcloud-server-0b4ed2577676ee090812b9be76e00483217a062b.zip |
fixed downloading of files with spaces in name for Firefox
-rw-r--r-- | lib/files.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/files.php b/lib/files.php index eec1007de1f..bdcae419189 100644 --- a/lib/files.php +++ b/lib/files.php @@ -121,7 +121,7 @@ class OC_Files { $filename=$dir.'/'.$files; } if($zip or OC_Filesystem::is_readable($filename)){ - header('Content-Disposition: attachment; filename='.basename($filename)); + header('Content-Disposition: attachment; filename="'.basename($filename).'"'); header('Content-Transfer-Encoding: binary'); header('Expires: 0'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); |