Clear-Site-Data: "*" when logging out

This commit is contained in:
Miraty 2021-08-05 12:51:18 +02:00
parent 879127d500
commit 66f472f678

View file

@ -2,6 +2,7 @@
<?php <?php
session_destroy(); session_destroy();
header('Clear-Site-Data: "*"');
header('Location: ' . PREFIX . '/auth/'); header('Location: ' . PREFIX . '/auth/');
exit; exit;
?> ?>