summaryrefslogtreecommitdiffstats
path: root/lib/private/legacy/OC_Response.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/legacy/OC_Response.php')
-rw-r--r--lib/private/legacy/OC_Response.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/private/legacy/OC_Response.php b/lib/private/legacy/OC_Response.php
index 45fea27d61d..bbeb6258109 100644
--- a/lib/private/legacy/OC_Response.php
+++ b/lib/private/legacy/OC_Response.php
@@ -94,7 +94,7 @@ class OC_Response {
// Send fallback headers for installations that don't have the possibility to send
// custom headers on the webserver side
- if(getenv('modHeadersAvailable') !== 'true') {
+ if (getenv('modHeadersAvailable') !== 'true') {
header('Referrer-Policy: no-referrer'); // https://www.w3.org/TR/referrer-policy/
header('X-Content-Type-Options: nosniff'); // Disable sniffing the content type for IE
header('X-Download-Options: noopen'); // https://msdn.microsoft.com/en-us/library/jj542450(v=vs.85).aspx
@@ -104,5 +104,4 @@ class OC_Response {
header('X-XSS-Protection: 1; mode=block'); // Enforce browser based XSS filters
}
}
-
}