Browse Source

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

Miraty 4 years ago
parent
commit
66f472f678
1 changed files with 1 additions and 0 deletions
  1. 1 0
      auth/logout.php

+ 1 - 0
auth/logout.php

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