HB/game/logout.php
2020-11-15 17:31:19 +01:00

9 lines
No EOL
147 B
PHP

<?php
if(!defined('INDEX')) { header('Location: ../'); exit; }
$sess->values['connected'] = FALSE;
$sess->put();
header('Location: ./');
exit;
?>