game/onyx/hb_game/jeu/logout.php

9 lines
149 B
PHP
Raw Normal View History

2008-11-17 11:00:00 +00:00
<?php
if(!defined('INDEX')) { header('Location: ../'); exit; }
$sess->values['connected'] = FALSE;
2008-11-04 11:00:00 +00:00
$sess->close();
2008-11-17 11:00:00 +00:00
header('Location: ./');
exit;
?>