diff options
Diffstat (limited to 'app/df.php')
-rw-r--r-- | app/df.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ function serveResource(string $uri, ?string $filename = NULL) : void header("Content-Length: " . filesize($uri)); if ($filename) - header("Content-Disposition: attachment; filename='" . $filename . "'"); + header("Content-Disposition: attachment; filename=\"" . $filename . "\""); fpassthru($f); fclose($f); |