mirror of
https://github.com/danpros/htmly.git
synced 2026-04-21 21:16:23 +05:30
11 lines
No EOL
121 B
PHP
11 lines
No EOL
121 B
PHP
<?php
|
|
|
|
unset($_SESSION[config("site.url")]);
|
|
if(empty($_SESSION))
|
|
{
|
|
session_destroy();
|
|
}
|
|
|
|
header('location: login');
|
|
|
|
?>
|