removed single quotes around publicly linked download file

This commit is contained in:
Jan-Christoph Borchardt 2011-08-20 05:58:37 +02:00
parent 109302a928
commit d15673f13f
1 changed files with 2 additions and 2 deletions

View File

@ -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();
}
?>
?>