Mercurial > prosody-modules
changeset 3227:62c82d097017
mod_http_upload_external: share.php: Fix whitespace
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 14 Aug 2018 18:20:59 +0100 |
parents | 3b13f19652e2 |
children | bada43f3a546 |
files | mod_http_upload_external/share.php |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_http_upload_external/share.php Tue Aug 14 17:47:44 2018 +0100 +++ b/mod_http_upload_external/share.php Tue Aug 14 18:20:59 2018 +0100 @@ -119,9 +119,9 @@ header('Content-Disposition: attachment'); header('Content-Type: application/octet-stream'); header('Content-Length: '.filesize($store_file_name)); - header("Content-Security-Policy: \"default-src 'none'\""); - header("X-Content-Security-Policy: \"default-src 'none'\""); - header("X-WebKit-CSP: \"default-src 'none'\""); + header("Content-Security-Policy: \"default-src 'none'\""); + header("X-Content-Security-Policy: \"default-src 'none'\""); + header("X-WebKit-CSP: \"default-src 'none'\""); if($request_method !== 'HEAD') { readfile($store_file_name); }