removed single quotes around publicly linked download file

remotes/origin/stable
Jan-Christoph Borchardt 14 years ago
parent 109302a928
commit d15673f13f
  1. 4
      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();
}
?>
?>

Loading…
Cancel
Save