From c4239a163dcbf15cc037beeb981f94e392729276 Mon Sep 17 00:00:00 2001 From: Arlen Johnson Date: Wed, 2 Jul 2025 10:00:27 -0400 Subject: [PATCH] Add Clear-Site-Data header on logout (CO-2720) --- app/webroot/auth/logout/logout.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/webroot/auth/logout/logout.php b/app/webroot/auth/logout/logout.php index 5b73df312..ddeb54576 100644 --- a/app/webroot/auth/logout/logout.php +++ b/app/webroot/auth/logout/logout.php @@ -40,4 +40,5 @@ $subst = '$1$2'; $path = preg_replace($re, $subst, urldecode($_SERVER['REQUEST_URI']), 1); +header('Clear-Site-Data: "cookies"'); header("Location: " . $path); \ No newline at end of file