servnest/pages/auth/logout.php

8 lines
114 B
PHP
Raw Normal View History

2021-01-22 21:58:46 +01:00
<?php
2022-06-10 21:14:47 +02:00
if (session_status() === PHP_SESSION_ACTIVE)
session_destroy();
2021-08-05 12:51:18 +02:00
header('Clear-Site-Data: "*"');
2022-06-17 15:45:52 +02:00
redir();