aboutsummaryrefslogtreecommitdiff
path: root/p/ext.php
diff options
context:
space:
mode:
authorGravatar maTh <1645099+math-GH@users.noreply.github.com> 2025-04-01 12:23:56 +0200
committerGravatar GitHub <noreply@github.com> 2025-04-01 12:23:56 +0200
commit1f624bc5e2fc720b7f570b4b217860747ef5dc65 (patch)
tree894e90cef48fd596f6b87c879bbdefdd0d74e643 /p/ext.php
parent238d5a48e41041a787f90c522c7873ef99ab6f7c (diff)
Referrer-Policy: same-origin (#6303)
* Referrer-Policy: same-origin * same-origin for our own images --------- Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'p/ext.php')
-rw-r--r--p/ext.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/p/ext.php b/p/ext.php
index 0a8c46546..b3007a4fd 100644
--- a/p/ext.php
+++ b/p/ext.php
@@ -112,6 +112,7 @@ if (!is_valid_path($absolute_filename)) {
$content_type = SUPPORTED_TYPES[$file_type];
header("Content-Type: {$content_type}");
header("Content-Disposition: inline; filename='{$file_name}'");
+header('Referrer-Policy: same-origin');
$mtime = @filemtime($absolute_filename);
if ($mtime === false) {